function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_openBrWindowCentered(theURL,winName,features,width,height) { //v2.0

	var doPopUpX = (screen.width/2)-(width/2);
	//var doPopUpY = (screen.height/2)-(height/2);
	var doPopUpY = 30
	var pos = ",left="+doPopUpX+",top="+doPopUpY;		
	
	window.open(theURL,winName,features+pos);
}
		
function tmt_confirm(msg){
	document.MM_returnValue=(confirm(unescape(msg)));
}
