var newWindow;
function popup(whichpub) 
{
	try{
	newWindow = window.open(whichpub, "publication", "fullscreen=no,resizable=no,status=no,toolbar=no,menubar=no,location=no,top=0,left=0");
	if (newWindow==null || typeof(newWindow)=="undefined") {
		alert("A pop-up blocker may have prevented you from opening this Digital Publication.\nPlease allow publications.ingagepublication.com to open pop-ups and try again.");
	}
    else{
		newWindow.moveTo(0,0);
		newWindow.focus();
	}
	}catch(e){
		//caught
	}
}
