function wmcmPopup2(page, myWidth, myHeight) 
{
try
{
newWind=window.open(page,"popUp","width="+myWidth+",height="+myHeight+",toolbar=no,status=no,scrollbars=yes,location=no,menubar=no,directories=no,resizable=no");
if(newWind.opener == null) {
newWind.opener = window;
}
else {
newWind.focus();
}
}
catch(e){}
}
