<!--
function popWin(theURL,winWidth,winHeight,showLocation,showMenu,scrollWin,resizeWin){
	var winX = (screen.width - winWidth) / 2;
	var winY = (screen.height - winHeight) / 2.6;
	windowAttributes= ('width='+winWidth+',height='+winHeight+'location='+'showLocation'+',menubar='+showMenu+',scrollbars='+scrollWin+",resizable="+resizeWin+",left="+winX+",top="+winY);
	window.open(theURL, "", windowAttributes);
}
function randomURL(theStr){
	var s = new String(theStr);
	s += (s.search(/\?/) != -1) ? '&' : '?';
	s += 'randomurl=' + Math.round(Math.random() * 1000000);
	return s;
}
function popVid(urlVid){
	popWin(randomURL("video.php?urlVid="+urlVid), "360", "300", "no", "no", "no", "no");
}
function btf() {
	self.focus();
}
window.onload = btf;
// -->
