function pop(type){ var awards = "film/awards.html"; var preview = "film/preview.html"; var credits = "film/credits.html"; if (type == 'awards'){ var thefilm_win = window.open(awards,'thefilm_win','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=437,height=437'); thefilm_win.focus(); } else if (type == 'preview'){ var preview_win = window.open(preview,'preview_win','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=437,height=437'); preview_win.focus(); } else if (type == 'credits'){ var thefilm_win = window.open(credits,'thefilm_win','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=437,height=437'); thefilm_win.focus(); } return false; }