<!--

var win = null;

function popUp(myPage,w,h,scroll,again){

//Fix for IE
isIE  = (navigator.appName.indexOf("Microsoft") != -1);

if (isIE) {
	if ( win != null ) {
		win.close();
	}
	}
else {
}


TopPosition = (screen.height) ? ((screen.height-h)/2) : 0;
LeftPosition = (screen.width) ? ((screen.width-w)/2) : 0;
settings =
'top='+TopPosition+',left='+LeftPosition+',toolbar=no,location=0,directories=0,status=0,menubar=0,scrollbars='+scroll+',maximizable=0,resizable=1,width='+w+',height='+h+'';
win = window.open(myPage,again,settings);

//Fix for Netscape
win.focus();

}



//-->

