// POPUP SCRIPT FOR VIDEOS
// Opens a pop-up window named video_window
// Contents comes from url entered in the body of the page
// Opening a second window will replace the first
function video_window(url) {
strParams = "toolbar=0,location=0,directories=0,status=0,menubar=0,";
strParams += "scrollbars=0,resizable=1,width=450,height=475,left=100,top=180";
window.open(url,"Link",strParams);
}

// POPUP FOR JOBS SECTION HELP
function help_window(url) {
strParams = "toolbar=0,location=0,directories=0,status=0,menubar=0,";
strParams += "scrollbars=1,resizable=1,width=475,height=500,left=200,top=100";
window.open(url,"Link",strParams);
}

 
// POPUP WINDOW, 530 WIDE SECTION HELP
function popup_window(url) {
strParams = "toolbar=0,location=0,directories=0,status=0,menubar=0,";
strParams += "scrollbars=1,resizable=1,width=530,height=450,left=200,top=100";
window.open(url,"Link",strParams);
}

function video_window_adjustable(url, height, width) {
var thisheight=height||425;
var thiswidth=width||450;
strParams = "toolbar=0,location=0,directories=0,status=0,menubar=0,";
strParams += "scrollbars=0,resizable=1,width="+thiswidth+",height="+thisheight+",left=100,top=180";
window.open(url,"Link",strParams);
}