function fullscreen(url)
{
	var wnd;
	var w=583;
	var h=444;
	wnd=window.open(url,"myWindow","channelmode=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=1,width=w,height=h,left=0,top=0'");
	wnd.resizeTo(w,h);
	wnd.moveTo((wnd.screen.width-w)/2,(wnd.screen.height-h)/2);
	wnd.focus();
}
function fullscreen2(url, myw, myh)
{
	var wnd;
	var w=myw;
	var h=myh;
	wnd=window.open(url,"myWindow","channelmode=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=1,width=w,height=h,left=0,top=0'");
	wnd.resizeTo(w,h);
	wnd.moveTo((wnd.screen.width-w)/2,(wnd.screen.height-h)/2);
	wnd.focus();
}
function redirect()
{
	window.location.href = "/index.php";
}