function OpenWin1(url,name,large)
{
	var param="status=yes,toolbar=0,location=0,menubar=0,scrollbars=auto,"+large;
	window.open(url,name,param);
}

function popup(monUrl) {
	w=750;
	h=600;
	pop=window.open(monUrl,'pop','menubar=no,status=YES,scrollbars=YES,resizable=yes,top=20, left='+eval(screen.width/2 - w/2)+', width='+w+',height='+h);
	pop.focus();
}