// JavaScript Document

function showPopup(url) {
newwindow=window.open(url,'name','height=750,width=550,top=100,left=100,resizable=yes,scrollbars=yes');
if (window.focus) {newwindow.focus()}
}

function video(url) {
newwindow=window.open(url,'name','height=300,width=360,top=300,left=500,resizable=yes,scrollbars=yes');
if (window.focus) {newwindow.focus()}
}