
<!--
function turnoff()
{
document.getElementById('entry').style.visibility='hidden'
}
function turnon()
{
document.getElementById('entry').style.visibility='visible'
}

function execute(){
setTimeout(gowindow(),200000);
	function gowindow() {
		window.open('output.php','photoarchive','fullscreen=yes,scrollbars=no');
	}
}

-->