// JavaScript Document
var newwindow;
function openVideo(url) {
	newwindow=window.open(url,'name','height=645,width=752,left=25,top=25,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

