function popUp(pRoot, pName){
	var newWindow = window.open(pRoot, pName, "width=auto, height=auto, left=0, top=0, scrollbars=no, resizable=yes, dependent=yes");
	newWindow.focus();}

function popUpSized(pRoot, pName, pWidth, pHeight){
	var nwidth = pWidth;
	var nheight = pHeight;

	var newWindow = window.open(pRoot, pName, "width="+nwidth+", height="+nheight+", left=0, top=0, scrollbars=no, resizable=no, dependent=yes");
	newWindow.focus();}
