function centerDialog(fileName, dialogWidth, dialogHeight, dialogParams, dialogTitle) {
	if (dialogParams == null) {
	 	dialogParams = "";
	}
	else {
		dialogParams = "," + dialogParams;
	}

	xpos = (screen.width - dialogWidth)/2;
	ypos = (screen.height - dialogHeight)/2;
	var dialogProperties = "left="+xpos+",top="+ypos+",width="+dialogWidth+",height="+dialogHeight;
	
	if (dialogTitle != null) 
	   dialogProperties += ",title='" + dialogTitle + "'";

   dialogProperties += dialogParams;
	window.open(fileName,null,dialogProperties);
}

function getInfoMail() {
   var _x = "com";
   var _d = "highclarity";
   var _u = "info";
   var _l = _u + "@" + _d + "." + _x;
   var _a = "<a h";
   var _b = "ref=";
   var _c = "mai";
   
   return(_l);
}

function setInfoMail() {
   var _x = "com";
   var _d = "highclarity";
   var _u = "info";
   var _l = _u + "@" + _d + "." + _x;
   var _a = "<a h";
   var _b = "ref=";
   var _c = "mai";
   
   document.write(_a + _b + "'" + _c + "lto:" + _l + "'>"+_l+"</a>");
}
