function popUpGen (page,w,h,id,globalProps) {
	if (!id) id="popup";
	if (!globalProps) globalProps = "resizable=yes,menubar=no,status=no,scrollbars=yes,toolbar=no,directories=no,location=no";
	if (!w||w=='') w=500;
	if (!h||h=='') h=500;
	var win;
	if (navigator.appName == 'Netscape') {
		win = window.open(page,id,'width='+w+',height='+h+','+globalProps+',screenX=0,screenY=0');
	} else {
		win = window.open(page,id,'width='+w+',height='+h+','+globalProps+',top=0,left=0');
	}
	return false;
}


