//highlights everything in a form field when selected

function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}

// Opens new window (for storypath preview)
function openPreview(id) {

	window.open ('preview.php?id=' + id, 'newwindow', config='height=400, width=500, toolbar=yes, menubar=no, scrollbars=yes, resizable=yes, location=yes, directories=no, status=yes');

}


