function chkdelete(url) {
	if (confirm("Are you sure you want to delete this page and images from panoguide?")) {
		window.location=url;
	}
}
var w;
function view(mylink, fullscreen) {
	var href, label;
	if (typeof(mylink) == 'string') {
	   href=mylink;
	   label = null;
	} else {
	   href=mylink.href;
	   label=mylink.target;
	}
	href += "?w="+window.screen.availWidth+"&h="+window.screen.availHeight;		
	if (fullscreen) {
		href += "&fs=true";		
		w = window.open(href, label, 'width=600,height=440,scrollbars=no,menubar=no,toolbar=no,directories=no,location=no,status=no');
	} else {
		w = window.open(href, label, 'width=600,height=440,scrollbars=no,menubar=no,toolbar=no,directories=no,location=no,status=no');
	}
	w.focus();
	return false;
}	
