function PopupPhoto(id) {
	var photourl = "/photogallery/photo.cfm?id="+id;
	if (document.images) {
		pw=window.open( photourl, "pw", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=500,height=500,screenX=50,screenY=50,top=50,left=50");
	} else {
		alert( '\nSorry, this Feature requires Netscape Navigator, Version 3.0 or greater\n'+
				'or Microsoft Internet Explorer, Version 4.0+.\n\n' );
	}
}

function bookmark(url,title) {
	if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
		window.external.AddFavorite(url,title);
	} else if (navigator.appName == "Netscape") {
		window.sidebar.addPanel(title,url,"");
	} else {
		alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
	}
}

function PopupFriend() {
	var referurl = "/tellafriend.cfm";
	if (document.images) {
		pw=window.open( referurl, "pw", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=400,height=250,screenX=50,screenY=50,top=50,left=50");
	} else {
		alert( '\nSorry, this Feature requires Netscape Navigator, Version 3.0 or greater\n'+
				'or Microsoft Internet Explorer, Version 4.0+.\n\n' );
	}
}

function PopWin(WinURL,WinX,WinY) {
	var WinOpts = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,screenX=50,screenY=50,top=50,left=50,width="+WinX+",height="+WinY;
	if ( document.images ) {
		popup = open(WinURL,"popwin",WinOpts);
	} else {
		location.href = WinURL;
	}
}

