// JavaScript Document
function popitup(url, width, height) {
	var left = (screen.width/2)-(width/2);
	var top = (screen.height/2)-(height/2);
	
	newwindow=window.open(url,'Castlebeck','height='+height+',width='+width+',top='+top+',left='+left);
	if (window.focus) {newwindow.focus()}
	return false;
}