//----------------------------------------------------------------------------------------------
function openModalDialog(url, t,l,w,h){
	if (document.layers){
		document.captureEvents(Event.MOUSEDOWN);
		document.onmousedown=checkFocus;
		isBlocked=true;
			
		myWin=window.open(url,"newWin","top="+t+",left="+l+",width="+w+",height="+h);
		myWin.focus();
	}
	if (document.all)
		window.showModalDialog(url,"","dialogTop:"+t+"px;dialogLeft:"+l+"px;dialogWidth:"+w+"px;dialogHeight:"+h+"px");
}
//----------------------------------------------------------------------------------------------
function goToURL() { //v3.0
  var i, args=goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
//----------------------------------------------------------------------------------------------
function popupMsg(msg) { //v1.0
  alert(msg);
}
//----------------------------------------------------------------------------------------------
function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//----------------------------------------------------------------------------------------------
