var NewWindow1
function popUpWin(Whatpage1,WindowName)
{
ShowWindow1=window.open("","NewWindow1","toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=1,resizable=0,copyhistory=1,alwaysRaised=1,width=675,height=475,screenX=10,screen1Y=0,top=10,left=10");
ShowWindow1.location.href=Whatpage1
self.NewWindow1 = ShowWindow1
}



function Pop(page, height, width) {

	if (! height){
		height = 400;
	}
	if (! width){
		width = 400;
	}

	doc = open(page,'','toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,height=' + height + ',width=' + width);
	
	if (document.images){
		doc.focus();
	}
}


