function doOpenWin(url,target) {
	hWin = window.open(url,target,'top=30,left=30,width=400,height=400,scrollbars=yes,toolbar=no,status=no,resizable=yes');
    hWin.focus();
}

function popVideo(url){
	if (BrowserDetect.OS == 'Windows'){
		if (BrowserDetect.browser == 'Firefox') w = 386;
		else w = 320;
		h = 285;
	}
	else{
		w = 320;
		h = 285;
	}
	
	win = window.open(url, 'video', 'width='+ w +', height='+ h +', resizable=0, status=no, scrollbars=0, location=no, menubar=no, toolbar=no, left=50, top=50');
	win.focus();
}