function timeout(address){
	//window.setTimeout("refresh('" + address + "')", 5000);
	window.setTimeout("refresh('"+ address +"')",3600000); //1800000
}

function refresh(refresh_address){
	//window.location.reload()
	window.location.href = refresh_address;
}

function showPicture(str) {
	window.open(str,'Photo','scrollbars=no,resizable=no,width=820,height=630,status=no,location=no,toolbar=no');
}

var ipwindow;

function getWall(name) {
	var wName = 'Photo';
	var wConf = 'toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,width=800,height=200';
	var url = "/viewer.php?id=" + name;
	ipwindow = window.open("",wName,wConf);
	ipwindow.location.href = url;
	ipwindow.focus();
}

function closepopup(){
	if(false == ipwindow.closed){
		ipwindow.close ();
	}
}