/*
function open_vidwindow(url, videowindow) {

video = window.open(url, videowindow,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=370,height=450');

video.moveTo((screen.width-370)/2, (screen.height-450)/2);

video.focus();

}
*/
	
leftPos = 0
if (screen) {
	leftPos = screen.width-600
}

function open_vidwindow(url, videowindow) {

video = window.open(url, videowindow,'left='+leftPos+',top=100, toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=370,height=450');

video.focus();

}
