function get_site(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 	'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=1000,height=800, fullscreen=1');");
}
function fullScreen(page) {
	if (navigator.appName == "Microsoft Internet Explorer"){ // better be ie6 at least
	window.open(page, '', 'fullscreen=yes, scrollbars=auto, resizable=yes').focus();
	}
	else { // i.e. if Firefox
	window.open(page, '', 'width=' + (screen.width-5) + ',height=' + (screen.height-30) + ', scrollbars=auto, resizable=yes, ').focus();
	}
}
