	function wmcmPopup(page, myWidth, myHeight) 
	{
		try
		{
			newWind=window.open(page,"popUp","width="+myWidth+",height="+myHeight+",toolbar=no,status=no,scrollbars=no,location=no,menubar=no,directories=no,resizable=no");
			if(newWind.opener == null) {
				newWind.opener = window;
			}
			else {
				newWind.focus();
			}
		}
		catch(e){}
	}

	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){}
	}
function wmcmWindowOpen(strUrl, strTarget, settings) {
    if (settings == "")
      settings = "scrollbars=yes,border=no,status=no,location=no,resizable=no,width=591,height=436";
	newW = window.open(strUrl, strTarget, settings); 
	newW.focus();
  }
