function doPopUp(url, name, w, h, scrollbars){
	var doPopUpX = (screen.width/2)-(w/2);
	var doPopUpY = (screen.height/2)-(h/2);
	var pos = "left="+doPopUpX+",top="+doPopUpY;
	doPopUpWindow = window.open(url,name,"scrollbars=" + scrollbars + ",width=" + w + ",height=" + h + ","+pos);
	doPopUpWindow.opener = this;
}

