// hamletunddieracker.de: Common Javascripts
// MM [02/2005] --> manni@mannim.de



function imagePopUp(name, width, height, category) {
	url = "../images/content/" + category + "/" + name + ".jpg";
	winl = (screen.width - width) / 2;
	wint = (screen.height - height) / 2;
    eval("augePopup = window.open(url, 'PopupWindow', 'scrollbars=yes,toolbar=no,location=no,top='+wint+',left='+winl+'directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,width="+ width +",height="+ height +"');");
    augePopup.focus();
}

function pagePopUp(file, width, height) {
	url = "../content/" + file;
	winl = (screen.width - width) / 2;
	wint = (screen.height - height) / 2;
    eval("augeFarmPopup = window.open(url, 'PopupWindow', 'scrollbars=no,toolbar=no,location=no,top='+wint+',left='+winl+'directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,width="+ width +",height="+ height +"');");
    augePopup.focus();
}



function displayStatus(statustext) {
  status=statustext;
}
