function openwin(page, name, vars )
{
	var newwin = open(page, name, vars);
	newwin.focus();
}

function openvideo(_url, h, w) 
{
	var newwin = open(_url, "popup", "height=" + h + ",width=" + w + ",innerHeight=" + h + ",innerWidth=" + w + ",outerHeight=" + h + ",outerWidth=" + w + ",screenX=150,left=150,screenY=150,top=150,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=yes,scrollbars=1,status=0,toolbar=0");
}