ver = new BrowserCheck()
/* enable disable starts here */ 
function BrowserCheck()
{
	var b = navigator.appName
	if (b=="Netscape") this.b = "ns"
	else if (b=="Microsoft Internet Explorer") this.b = "ie"
	else this.b = b

}

function checkEvent(e)
{
	if (e.target !="")
	{
		if (ver.b == 'ns')
		{
			if (e.target.name)
			{
				if (arrElementsStatus[e.target.name] == 'readonly')
				{
					e.target.blur();
					return false;
				}
				else
				{
					return true;
				}
			}
		}
		else
		{
			return true;
		}
	}
}

var netscapeItems;
ver = new BrowserCheck()
var o;
var arrElementsStatus = new Array();
var arrElementsNames = new Array();
var arrListBoxValue = new Array();

if (ver.b == 'ns')
{
	this.document.captureEvents(Event.MOUSEDOWN);
	this.document.captureEvents(Event.FOCUS);
	this.document.onMouseDown=checkEvent;
	this.document.onFocus=checkEvent;
}

function disabletextbox(objName)
{
	if (ver.b == 'ns')
	{
  	  this.arrElementsStatus[objName.name] = 'readonly';
	}
	else
	{
	    objName.disabled = 1;
	}
}

function enabletextbox(objName)
{
	if (ver.b == 'ns')
	{
	    this.arrElementsStatus[objName.name] = 'editable';
	}
	else
	{
	    objName.disabled = 0;
	}
}

function popupnewTaskwindow(newlink)
{
	if(screen.width==800 && screen.height==600)
		window.open(newlink,null,"height=450,width=600,status=yes,toolbar=Yes,menubar=Yes,location=no,resizable=yes,scrollbars=yes,top=100,left=80");
	else
		window.open(newlink,null,"height=450,width=700,status=yes,toolbar=yes,menubar=Yes,location=no,resizable=yes,scrollbars=yes,top=100,left=140");
}

function popupWithTaskwindow(tasklink)
{
	if(screen.width==800 && screen.height==600)
		window.open(tasklink,"newwindow","height=450,width=600,status=yes,toolbar=Yes,menubar=Yes,location=no,resizable=yes,scrollbars=yes,top=100,left=80");
	else
		window.open(tasklink,"newwindow","height=450,width=700,status=yes,toolbar=yes,menubar=Yes,location=no,resizable=yes,scrollbars=yes,top=100,left=140");

}

function ShowSubMenu()
{
	if(document.all.divSubMenu.style.display=="none")
		document.all.divSubMenu.style.display="block"
	else
		document.all.divSubMenu.style.display="none"
}
function ShowModifyContactsSubMenu()
{
	if(document.all.divModifyContactsSubMenu.style.display=="none")
		document.all.divModifyContactsSubMenu.style.display="block"
	else
		document.all.divModifyContactsSubMenu.style.display="none"
}


function HideSubMenu()
{
	document.all.divSubMenu.style.display="none"
}
/* enable disable ends here */
  
  
/* open popup window link OnFocus starts here */
function popupnewwindowonfocus()
{
 window.status = "viewuser.asp";
}
/* open popup window link OnFocus ends here */

/* open popup window starts here */
function popupnewwindow(newlink)
{
	if(screen.width==800 && screen.height==600)
		window.open(newlink,null,"height=450,width=600,status=yes,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,top=100,left=80");
	else
		window.open(newlink,null,"height=450,width=700,status=yes,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,top=100,left=140");

  window.status = "viewuser.asp";
}
/* open popup window ends here */

/* large size new popupwindow opens here */

function popupnewwindowopen(newlink)
{
	if(screen.width==800 && screen.height==600)
		window.open(newlink,'salestrack',"height=600,width=650,status=yes,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,top=40,left=70");
	else
		window.open(newlink,'salestrack',"height=650,width=750,status=yes,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes,top=40,left=120");

  window.status = "viewuser.asp";
}

/* large size new popupwindow ends here */


/* Date Picker Starts HERE ! */ 
  function show_calendar(str_target, str_datetime) 
{
	//alert ( str_datetime );
	var arr_months = ["January", "February", "March", "April", "May", "June",
		"July", "August", "September", "October", "November", "December"];
	var week_days = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
	var n_weekstart = 1; // day week starts from (normally 0 or 1)	
	var dt_datetime = (str_datetime == null || str_datetime =="" ?  new Date() : str2dt(str_datetime));
	var dt_prev_month = new Date(dt_datetime);
	dt_prev_month.setMonth(dt_datetime.getMonth()-1);
	var dt_next_month = new Date(dt_datetime);
	dt_next_month.setMonth(dt_datetime.getMonth()+1);
	
	var dt_next_year = new Date(dt_datetime);
	dt_next_year.setYear(dt_datetime.getFullYear()+1);	
	
	var dt_prev_year = new Date(dt_datetime);
	dt_prev_year.setYear(dt_datetime.getFullYear()-1);	


	var dt_firstday = new Date(dt_datetime);
	dt_firstday.setDate(1);
	dt_firstday.setDate(1-(7+dt_firstday.getDay()-n_weekstart)%7);
	var dt_lastday = new Date(dt_next_month);
	dt_lastday.setDate(0);
	
	// html generation (feel free to tune it for your particular application)
	// print calendar header
	var intYear = dt_datetime.getFullYear();
	var str_buffer = new String (
		"<html>\n"+
		"<head>\n"+
		"	<title>Calendar</title>\n"+
		"</head>\n"+
		"<body topmargin = '5' bgcolor=\"#ffffff\">\n"+
		"<table class=\"clsOTable\" cellspacing=\"0\" border=\"0\" width=\"100%\">\n"+
		"<tr><td bgcolor=\"#7fc372\">\n"+
		"<table cellspacing=\"1\" cellpadding=\"3\" border=\"0\" width=\"100%\">\n"+
		"<tr>\n	<td bgcolor=\"#7fc372\"><a onfocus = 'this.blur()' href=\"javascript:window.opener.show_calendar('"+
		str_target+"', '"+ dt2dtstr(dt_prev_year)+"');\">"+
		"<img src=\"..\\images\\previousyear.jpg\"  border=\"0\""+
		" alt=\"Previous Year\"></a>" +		
		"<a onfocus = 'this.blur()' href=\"javascript:window.opener.show_calendar('"+
		str_target+"', '"+ dt2dtstr(dt_prev_month)+"');\">"+
		"<img src=\"..\\images\\previousmonth.jpg\"  border=\"0\""+
		" alt=\"Previous Month\"></a></td>\n"+				
		"	<td bgcolor=\"#7fc372\"  align = \"center\">"+
		"<font color=\"white\" face=\"tahoma, verdana\" size=\"2\"><b>"
		+arr_months[dt_datetime.getMonth()]+" " + intYear  + "</b></font></td>\n"+
		"	<td bgcolor=\"#7fc372\" align=\"right\"><a onfocus = 'this.blur()' href=\"javascript:window.opener.show_calendar('"
		+str_target+"', '"+dt2dtstr(dt_next_month)+"');\">"+
		"<img src=\"..\\images\\nextmonth.jpg\"  border=\"0\""+
		" alt=\"Next Month\"></a>" + 
		"<a onfocus = 'this.blur()' href=\"javascript:window.opener.show_calendar('"
		+str_target+"', '"+dt2dtstr(dt_next_year)+"');\">"+
		"<img src=\"..\\images\\nextyear.jpg\"  border=\"0\""+
		" alt=\"Next Year\"></a>" + 
		"</td>\n</tr></table>\n"
	);

	var dt_current_day = new Date(dt_firstday);
	// print weekdays titles
	str_buffer += "<table cellspacing=\"1\" cellpadding=\"3\" border=\"0\" width=\"100%\"><tr>\n";
	for (var n=0; n<7; n++)
		str_buffer += "	<td bgcolor=\"#eceaea\">"+
		"<font color=\"#000000\" face=\"tahoma, verdana\" size=\"2\">"+
		week_days[(n_weekstart+n)%7]+"</font></td>\n";
	// print calendar table
	str_buffer += "</tr>\n";
	var intWeek = 0;
	while (dt_current_day.getMonth() == dt_datetime.getMonth() ||
		dt_current_day.getMonth() == dt_firstday.getMonth()) {
		// print row heder
		str_buffer += "<tr>\n";
		for (var n_current_wday=0; n_current_wday<7; n_current_wday++) {
				if (dt_current_day.getDate() == dt_datetime.getDate() &&
					dt_current_day.getMonth() == dt_datetime.getMonth())
					// print current date
					str_buffer += "	<td bgcolor=\"#54B7BC\" align=\"right\">";
				else if (dt_current_day.getDay() == 0 || dt_current_day.getDay() == 6)
					// weekend days
					str_buffer += "	<td bgcolor=\"#E5F9E5\" align=\"right\">";
				else
					// print working days of current month
					str_buffer += "	<td bgcolor=\"white\" align=\"right\">";

				if (dt_current_day.getMonth() == dt_datetime.getMonth())
					// print days of current month
					str_buffer += "<a href=\"javascript:window.opener.document."+str_target+
					".value='"+dt2dtstr(dt_current_day)+"'; window.close();\">"+
					"<font color=\"#000000\" face=\"tahoma, verdana\" size=\"2\">";
				else 
					// print days of other months
					str_buffer += "<a href=\"javascript:window.opener.document."+str_target+
					".value='"+dt2dtstr(dt_current_day)+"'; window.close();\">"+
					"<font color=\"#B0B8C6\" face=\"tahoma, verdana\" size=\"2\">";
				str_buffer += dt_current_day.getDate()+"</font></a></td>\n";
				dt_current_day.setDate(dt_current_day.getDate()+1);
		}
		// print row footer
		str_buffer += "</tr>\n";
		intWeek ++;
	}
	// print calendar footer
	str_buffer += 
		"</table>\n" +
		"</tr>\n</td>\n</table>\n" +
		"</body>\n" +
		"</html>\n"; 

	
		/* "<form name=\"cal\">\n<tr><td colspan=\"7\" bgcolor=\"#87CEFA\">"+
		"<font color=\"White\" face=\"tahoma, verdana\" size=\"2\">"+
		"Time: <input type=\"text\" name=\"time\" value=\""+dt2tmstr(dt_datetime)+
		"\" size=\"8\" maxlength=\"8\"></font></td></tr>\n</form>\n" +
		"</table>\n" +
		"</tr>\n</td>\n</table>\n" +
		"</body>\n" +
		"</html>\n"; */
	var vWinCal = window.open("", "Calendar", "width=270,height=175,status=no,resizable=no" );

	if( intWeek < 5)
		vWinCal.resizeTo(270, intWeek * 49 );	
	else if( intWeek == 5)
		vWinCal.resizeTo(270, intWeek * 43 );
	else
		vWinCal.resizeTo(270, intWeek * 40 );
	vWinCal.opener = self;
	var calc_doc = vWinCal.document;
	calc_doc.write (str_buffer);
	calc_doc.close();
}
// datetime parsing and formatting routimes. modify them if you wish other datetime format
function str2dt (str_datetime) 
{
	var re_date = /^(\d+)\-(\d+)\-(\d+)/;
	if (!re_date.exec(str_datetime))
		return alert("Invalid Datetime format: "+ str_datetime);
	return (new Date (RegExp.$3, RegExp.$2-1, RegExp.$1, RegExp.$4, RegExp.$5, RegExp.$6));
}
function dt2dtstr (dt_datetime) 
{
	var intMonth;
	if((dt_datetime.getMonth()+1) <= 9)
		intMonth = "0" + (dt_datetime.getMonth()+1);
	else
		intMonth = (dt_datetime.getMonth()+1);

	var intDate;
	if( dt_datetime.getDate() <= 9)
		intDate = "0" + dt_datetime.getDate();	
	else
		intDate = dt_datetime.getDate();

	return (new String (intDate+"-"+(intMonth)+"-"+dt_datetime.getFullYear()+" "));
}
function dt2tmstr (dt_datetime) 
{
	return (new String (
			dt_datetime.getHours()+":"+dt_datetime.getMinutes()+":"+dt_datetime.getSeconds()));
}


/* Date Picker ENDS HERE ! */ 

function isValidSubject(field)
{
	var strTmp = (field.value).toUpperCase(); 
	var valid = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_&',/() " ;
	var temp;
	for (var i=0; i<strTmp.length; i++)
	{
		temp = ""+ strTmp.substring(i, i+1);
					
		if (valid.indexOf(temp) == -1) 
		{
			return false;
			break;
		}
	}
	return true;   	
}	

function buttonCancel()
{
	window.location.href="welcome.asp"
}

function CloseWindow()
{
	window.opener.location.reload(); 
	self.close();
}

function checkLogin()
{
	if(document.frmLogin.txtUserName.value == "")
	{
		alert("Please enter your User Name.");
		document.frmLogin.txtUserName.focus();
		return false;
	}
	if(document.frmLogin.txtPassword.value == "")
	{
		alert("Please enter your Password.");
		document.frmLogin.txtPassword.focus();
		return false;
		
	}
	
	//document.frmLogin.action = "welcome.asp"
	//document.frmLogin.submit()
	return true;
}

function addObjects(frm)  
{	
	var index;
	var index1;  
	var newoption;
	var isNew;
	var boxLength;
	var selectedItem;
	var selectedText;
	var selectedValue;
	if(frm.lstEmployees.length  == 0)  
    { 
		alert("There are no Employees.");
		frm.lstEmployees.focus();
		return false;
    }
    
    if(frm.selRoleName.value == '')  
    { 
		alert("Please select a role of the Employee.");
		frm.lstEmployees.focus();
		return false;
    }  
      
	if(frm.lstEmployees.value == '')  
    { 
		alert("Please select the Employee to be staffed.");
		frm.lstEmployees.focus();
		return false;
    }  
    else
    { 
		var destination;
		var strRole = frm.selRoleName[frm.selRoleName.selectedIndex].text;
		if(strRole == "Project Lead")
		{
			destination = frm.lstCoordinator;
		}
		if(strRole == "Technical Architect")
		{
			destination = frm.lstDesignArchitect;
		}
		if(strRole == "Developer")
		{
			destination = frm.lstProgrammer;
		}
		if(strRole == "Technical Writer")
		{		
			destination = frm.lstTechnicalWriter;
		}
		if(strRole == "Software Quality Tester")
		{		
			destination = frm.lstTester;
		}
		if(strRole == "Business Analyst")
		{		
			destination = frm.lstBusinessAnalyst;
		}
		if(strRole == "Graphics Designer")
		{		
			destination = frm.lstGraphicsDesigner;
		}
		if(strRole == "HTML/JavaScript Programmer")
		{		
			destination = frm.lstHtmlProgrammer;
		}
		if(strRole == "Marketing and Sales")
		{		
			destination = frm.lstMarketingandSales;
		}
		if(strRole == "Operations")
		{		
			destination = frm.lstOperations;
		}
		if(strRole == "Technical Lead")
		{		
			destination = frm.lstTechnicalLead;
		}
		if(strRole == "Software Quality Architect")
		{		
			destination = frm.lstSoftQualityArchitect;
		}
		var boxLength = destination.length;		
    }
    var n = frm.lstEmployees.length;
 	for (index1 = 0; index1 < n ; index1++) 
	{
		isNew = true;		 
		if (frm.lstEmployees.options[index1].selected)
	 	{	 		
			selectedText = frm.lstEmployees.options[index1].text;		
			selectedValue = frm.lstEmployees.options[index1].value;		
			if (boxLength != 0)
			{
				for (index = 0; index < boxLength; index++) 
				{  
					if (destination[index].value == selectedValue) 
					{						
						isNew = false;
						break;
					}     
				}
			}	
			if (isNew) 
			{				
			    newoption = new Option(selectedText, selectedValue, false,false);
			    destination.options[boxLength] = newoption;			  			    
			   // frm.lstEmployees[index1] = null;
			   // n = frm.lstEmployees.length;
			   // index1--;
			   // break;
			} 			
			boxLength = destination.length;
			
		}		
	}

}

function removeObjects(frm) 
{
	var isDeleted = false;
	for(j=1;j<=12;j++)
	{
		switch(j)
		{
			case 1 :
				source = frm.lstCoordinator;
				break;
			case 2 :
				source = frm.lstDesignArchitect;
				break;
			case 3:
				source = frm.lstProgrammer;
				break;
			case 4:
				source = frm.lstTechnicalWriter;
				break;
			case 5:
				source = frm.lstTester;
				break;
			case 6:
				source = frm.lstBusinessAnalyst;
				break;
			case 7:
				source = frm.lstGraphicsDesigner;
				break;
			case 8:
				source = frm.lstHtmlProgrammer;
				break;
			case 9:
				source = frm.lstTechnicalLead;
				break;
			case 10:
				source = frm.lstSoftQualityArchitect;
				break;
			case 11:
				source = frm.lstMarketingandSales;
				break;
			case 12:
				source = frm.lstOperations;
				break;
		}
		
		var x;
		var boxLength = source.length;
		
		/*if (boxLength == 0)
			{
				alert("There are no Employees");
				source.focus();
				return;
			}   
			arrSelected = new Array();
			var count = 0;
			for (i = 0; i < boxLength; i++) 
			{
				alert(source.options[i].selected); 
				if (source.options[i].selected) 
				{
					arrSelected[count] = source.options[i].value;
					count++;
				}
							
			}*/	 	
			/*if (source.value == "")
				{
					alert("Please select the Employee to be Removed.");
					source.focus();
					return false;
				}*/
			for (i = 0; i < boxLength; i++) 
			{
				if (source.options[i].selected) 
				{					
					if(source.options[i].value.indexOf("*") == 0 )
					{
						source.options[i].selected = false;
						alert("You cannot remove '" + source.options[i].text + "'" );						
					}
					else
					{
						//newoption = new Option(source.options[i].text, source.options[i].value, false,false);
						//frm.lstEmployees.options[frm.lstEmployees.length] = newoption;			  			 					
						source.options[i] = null;
						i--;
						boxLength = source.length;						
					}
					isDeleted = true;
				}	
				
			}       
		}
		if(!isDeleted)
		{
			alert("Please select the Employee to be removed.");
			return;
		}
}

function trimBlankSpaces(frmName)
{
	for(index=0;index<frmName.elements.length;index++)
	{
		if(frmName.elements[index].type.indexOf("text") == 0 )
		{
			frmName.elements[index].value = stripBlanks(frmName.elements[index].value);
		}
	}
}

function stripBlanks(Source)
{
 	var newString;
	var i;
	var j;
	var blank;
	blank = " ";
	newString = "";
	if(Source == null) Source = " ";
	aString = Source;	
	for (i=0; i<aString.length; i++)
	{ 
		if (aString.charAt(i) != blank && aString.charCodeAt(i)!= 13 && aString.charCodeAt(i) != 10 )
		{
			break;
		}
	}
	for (j=aString.length-1; j>=0; j--)
	{
		if (aString.charAt(j) != blank   && aString.charCodeAt(j)!= 13 && aString.charCodeAt(j) != 10 )
		{
				break;
		}
	}
	for(k=i;k<=j;k++)
	{
		newString += aString.charAt(k);
	}	
	return newString;	
}

function ConvertProperCase(Field)
{
	var tmpStr;
	tmpStr=Field.value;
	tmpStr = stripBlanks(Field.value);
	Field.value=tmpStr;
	tmpStr = tmpStr.substr(0,1).toUpperCase() + tmpStr.substr(1,tmpStr.length);
	Field.value=tmpStr;
}

function UserNameCheck(Field)
{
	var strTmp = Field.value;  	
		
	var valid = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890_" ;
	var temp;
	for (var i=0; i<strTmp.length; i++)
	{
		temp = ""+ strTmp.substring(i, i+1);
					
		if (valid.indexOf(temp) == -1) 
		{
			return false;
			break;
		}
	}
	return true;   	
}

function NameCheck(Field)
{
	var strTmp = Field.value;  	
	
	var valid = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" ;
	var temp;
	for (var i=0; i<strTmp.length; i++)
	{
		temp = ""+ strTmp.substring(i, i+1);
				
		if (valid.indexOf(temp) == -1) 
		{
			return false;
			break;
		}
	}
	return true;  	
}

function ZipCodeCheck(Field)
{
	var strTmp = Field.value;  	
	var intBlankOccurance = 0;
	var strAlertMsg;
	var valid = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890 " ;
	var temp;
	
	for (var i=0; i<strTmp.length; i++)
	{
		temp = ""+ strTmp.substring(i, i+1);
				
		if (valid.indexOf(temp) == -1) 
		{
			return false;
			break;
		}
		else
		{
			if(temp == " ")
			{
				intBlankOccurance = intBlankOccurance + 1;
			}
		}
	}
	if (intBlankOccurance > 1)
		return false;
	else
		return true;   	
}



function ChangedPhoneNumber(Field)
{
	var strTmp = Field.value;  	
	var intBlankOccurance = 0;
	var intHypenOccurance = 0;
	var strAlertMsg;
	var valid = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890 -()+" ;
	var temp;
	
	for (var i=0; i<strTmp.length; i++)
	{
		temp = ""+ strTmp.substring(i, i+1);
				
		if (valid.indexOf(temp) == -1) 
		{
			return false;
			break;
		}
	/*	else
		{
			if(temp == " ")
			{
				intBlankOccurance = intBlankOccurance + 1;
			}
			else if(temp == "-")
			{
				intHypenOccurance = intHypenOccurance + 1;
			}
		} */
	}
	//if (intBlankOccurance > 1 || intHypenOccurance > 1 )
	//	return false;
	//else
		return true;   	
}

function PhoneCountryCodeCheck(Field)
{
	var strTmp = Field.value;  	
	var intBlankOccurance = 0;
	var intHypenOccurance = 0;
	var strAlertMsg;
	var valid = "1234567890 +" ;
	var temp;
	
	for (var i=0; i<strTmp.length; i++)
	{
		temp = ""+ strTmp.substring(i, i+1);
				
		if (valid.indexOf(temp) == -1) 
		{
			return false;
			break;
		}
	}
		return true;   	
}


var arrUKCounty = new Array();	
		arrUKCounty[0] = "Aberdeenshire";
	arrUKCounty[1] = "Alderney";
	arrUKCounty[2] = "Anglesey/Sir Fon";
	arrUKCounty[3] = "Angus/Forfarshire";
	arrUKCounty[4] = "Argyllshire";
	arrUKCounty[5] = "Avon";
	arrUKCounty[6] = "Ayrshire";
	arrUKCounty[7] = "Bedfordshire";
	arrUKCounty[8] = "Banffshire";
	arrUKCounty[9] = "Berkshire" ;
	arrUKCounty[10] = "Berwickshire " ;
	arrUKCounty[11] = "Borders";
	arrUKCounty[12] = "Brecknockshire/Sir Frycheiniog";
	arrUKCounty[13] = "Buckinghamshire";
	arrUKCounty[14] = "Buteshire";
	arrUKCounty[15] = "Caernarfonshire/Sir Gaernarfon";
	arrUKCounty[16] = "Caithness";
	arrUKCounty[17] = "Cambridgeshire";
	arrUKCounty[18] = "Cardiganshire/Ceredigion";
	arrUKCounty[19] = "Carmarthenshire/Sir Gaerfyrddin";
	arrUKCounty[20] = "Central";
	arrUKCounty[21] = "Cheshire";
	arrUKCounty[22] = "Clackmannanshire";
	arrUKCounty[23] = "Cleveland";
	arrUKCounty[24] = "Clwyd";
	arrUKCounty[25] = "Cornwal";
	arrUKCounty[26] = "County Antrim";
	arrUKCounty[27] = "County Armagh";
	arrUKCounty[28] = "County Down";
	arrUKCounty[29] = "County Durham";
	arrUKCounty[30] = "County Fermanagh";
	arrUKCounty[31] = "County Londonderry";
	arrUKCounty[32] = "County Tyrone";
	arrUKCounty[33] = "Cromartyshire ";
	arrUKCounty[34] = "Cumberland";
	arrUKCounty[35] = "Cumbria";
	arrUKCounty[36] = "Derbyshire";
	arrUKCounty[37] = "Denbighshire/Sir Ddinbych";
	arrUKCounty[38] = "Devon";
	arrUKCounty[39] = "Dorset";
	arrUKCounty[40] = "Dumfries & Galloway";
	arrUKCounty[41] = "Dunbartonshire/Dumbartonshire";
	arrUKCounty[42] = "Dyfed";
	arrUKCounty[43] = "East Lothian/Haddingtonshire";
	arrUKCounty[44] = "East Sussex";
	arrUKCounty[45] = "Essex";
	arrUKCounty[46] = "Fife";
	arrUKCounty[47] = "Flintshire/Sir Fflint";
	arrUKCounty[48] = "Glamorgan/Morgannwg";
	arrUKCounty[49] = "Gloucestershire";
	arrUKCounty[50] = "Grampian";
	arrUKCounty[51] = "Greater London";
	arrUKCounty[52] = "Greater Manchester";
	arrUKCounty[53] = "Guernsey";
	arrUKCounty[54] = "Gwent";
	arrUKCounty[55] = "Gwynedd";
	arrUKCounty[56] = "Hampshire";
	arrUKCounty[57] = "Herefordshire & Worcester";
	arrUKCounty[58] = "Hertfordshire";
	arrUKCounty[59] = "Highlands";
	arrUKCounty[60] = "Huntingdonshire";
	arrUKCounty[61] = "Humberside";
	arrUKCounty[62] = "Inverness-shire";
	arrUKCounty[63] = "Isle of Man";
	arrUKCounty[64] = "Isle of Wight";
	arrUKCounty[65] = "Jersey";
	arrUKCounty[66] = "Kent";
	arrUKCounty[67] = "Kincardineshire";
	arrUKCounty[68] = "Kinross-shire";
	arrUKCounty[69] = "Kirkcudbrightshire";
	arrUKCounty[70] = "Lanarkshire";
	arrUKCounty[71] = "Lancashire";
	arrUKCounty[72] = "Leicestershire";
	arrUKCounty[73] = "Lincolnshire";
	arrUKCounty[74] = "Lothian";
	arrUKCounty[75] = "Nairnshire";
	arrUKCounty[76] = "Merioneth/Meirionnydd";
	arrUKCounty[77] = "Merseyside";
	arrUKCounty[78] = "Middlesex";
	arrUKCounty[79] = "Midlothian/Edinburghshire";
	arrUKCounty[80] = "Monmouthshire/Sir Fynwy";
	arrUKCounty[81] = "Montgomeryshire/Sir Drefaldwyn";
	arrUKCounty[82] = "Morayshire";
	arrUKCounty[83] = "Norfolk";
	arrUKCounty[84] = "North Yorkshire";
	arrUKCounty[85] = "Northamptonshire";
	arrUKCounty[86] = "Northumberland";
	arrUKCounty[87] = "Nottinghamshire";
	arrUKCounty[88] = "Orkney";
	arrUKCounty[89] = "Oxfordshire";
	arrUKCounty[90] = "Peeblesshire";
	arrUKCounty[91] = "Pembrokeshire/Sir Benfro";
	arrUKCounty[92] = "Perthshire";
	arrUKCounty[93] = "Powys";
	arrUKCounty[94] = "Radnorshire/Sir Faesyfed";
	arrUKCounty[95] = "Renfrewshire";
	arrUKCounty[96] = "Ross-shire";
	arrUKCounty[97] = "Roxburghshire";	
	arrUKCounty[98] = "Rutland";
	arrUKCounty[99] = "Selkirkshire";
	arrUKCounty[100] = "Shetland";
	arrUKCounty[101] = "Shropshire";
	arrUKCounty[102] = "Somerset";
	arrUKCounty[103] = "South Glamorgan";
	arrUKCounty[104] = "South Yorkshire";
	arrUKCounty[105] = "Staffordshire";
	arrUKCounty[106] = "Stirlingshire";
	arrUKCounty[107] = "Strathclyde";
	arrUKCounty[108] = "Suffolk";
	arrUKCounty[109] = "Surrey";
	arrUKCounty[110] = "Sussex";
	arrUKCounty[111] = "Sutherland";
	arrUKCounty[112] = "The Sark";
	arrUKCounty[113] = "Tayside";
	arrUKCounty[114] = "Tyne & Wear";
	arrUKCounty[115] = "Warwickshire";
	arrUKCounty[116] = "West Glamorgan";
	arrUKCounty[114] = "West Lothian/Linlithgowshire";
	arrUKCounty[115] = "West Midlands";
	arrUKCounty[116] = "Westmorland";
	arrUKCounty[117] = "West Sussex";
	arrUKCounty[118] = "West Yorkshire";
	arrUKCounty[119] = "Western Isles";
	arrUKCounty[120] = "Wigtownshire";
	arrUKCounty[121] = "Wiltshire";
	
<!--Menu for reports--->

function Menu(label, mw, mh, fnt, fs, fclr, fhclr, bg, bgh, halgn, valgn, pad, space, to, sx, sy, srel, opq, vert, idt, aw, ah) 
{
	this.version = "020320 [Menu; mm_menu.js]";
	this.type = "Menu";
	this.menuWidth = mw;
	this.menuItemHeight = mh;
	this.fontSize = fs;
	this.fontWeight = "plain";
	this.fontFamily = fnt;
	this.fontColor = fclr;
	this.fontColorHilite = fhclr;
	this.bgColor = "#555555";
	this.menuBorder = 1;
	this.menuBgOpaque=opq;
	this.menuItemBorder = 1;
	this.menuItemIndent = idt;
	this.menuItemBgColor = bg;
	this.menuItemVAlign = valgn;
	this.menuItemHAlign = halgn;
	this.menuItemPadding = pad;
	this.menuItemSpacing = space;
	this.menuLiteBgColor = "#ffffff";
	this.menuBorderBgColor = "#777777";
	this.menuHiliteBgColor = bgh;
	this.menuContainerBgColor = "#cccccc";
	this.childMenuIcon = "arrows.gif";
	this.submenuXOffset = sx;
	this.submenuYOffset = sy;
	this.submenuRelativeToItem = srel;
	this.vertical = vert;
	this.items = new Array();
	this.actions = new Array();
	this.childMenus = new Array();
	this.hideOnMouseOut = true;
	this.hideTimeout = to;
	this.addMenuItem = addMenuItem;
	this.writeMenus = writeMenus;
	this.MM_showMenu = MM_showMenu;
	this.onMenuItemOver = onMenuItemOver;
	this.onMenuItemAction = onMenuItemAction;
	this.hideMenu = hideMenu;
	this.hideChildMenu = hideChildMenu;
	if (!window.menus) window.menus = new Array();
	this.label = " " + label;
	window.menus[this.label] = this;
	window.menus[window.menus.length] = this;
	if (!window.activeMenus) window.activeMenus = new Array();
}

function addMenuItem(label, action) {
	this.items[this.items.length] = label;
	this.actions[this.actions.length] = action;
}

function FIND(item) {
	if( window.mmIsOpera ) return(document.getElementById(item));
	if (document.all) return(document.all[item]);
	if (document.getElementById) return(document.getElementById(item));
	return(false);
}

function writeMenus(container) {
	if (window.triedToWriteMenus) return;
	var agt = navigator.userAgent.toLowerCase();
	window.mmIsOpera = agt.indexOf("opera") != -1;
	if (!container && document.layers) {
		window.delayWriteMenus = this.writeMenus;
		var timer = setTimeout('delayWriteMenus()', 500);
		container = new Layer(100);
		clearTimeout(timer);
	} else if (document.all || document.hasChildNodes || window.mmIsOpera) {
		document.writeln('<span id="menuContainer"></span>');
		container = FIND("menuContainer");
	}

	window.mmHideMenuTimer = null;
	if (!container) return;	
	window.triedToWriteMenus = true; 
	container.isContainer = true;
	container.menus = new Array();
	for (var i=0; i<window.menus.length; i++) 
		container.menus[i] = window.menus[i];
	window.menus.length = 0;
	var countMenus = 0;
	var countItems = 0;
	var top = 0;
	var content = '';
	var lrs = false;
	var theStat = "";
	var tsc = 0;
	if (document.layers) lrs = true;
	for (var i=0; i<container.menus.length; i++, countMenus++) {
		var menu = container.menus[i];
		if (menu.bgImageUp || !menu.menuBgOpaque) {
			menu.menuBorder = 0;
			menu.menuItemBorder = 0;
		}
		if (lrs) {
			var menuLayer = new Layer(100, container);
			var lite = new Layer(100, menuLayer);
			lite.top = menu.menuBorder;
			lite.left = menu.menuBorder;
			var body = new Layer(100, lite);
			body.top = menu.menuBorder;
			body.left = menu.menuBorder;
		} else {
			content += ''+
			'<div id="menuLayer'+ countMenus +'" style="position:absolute;z-index:1;left:10px;top:'+ (i * 100) +'px;visibility:hidden;color:' +  menu.menuBorderBgColor + ';">\n'+
			'  <div id="menuLite'+ countMenus +'" style="position:absolute;z-index:1;left:'+ menu.menuBorder +'px;top:'+ menu.menuBorder +'px;visibility:hide;" onmouseout="mouseoutMenu();">\n'+
			'	 <div id="menuFg'+ countMenus +'" style="position:absolute;left:'+ menu.menuBorder +'px;top:'+ menu.menuBorder +'px;visibility:hide;">\n'+
			'';
		}
		var x=i;
		for (var i=0; i<menu.items.length; i++) {
			var item = menu.items[i];
			var childMenu = false;
			var defaultHeight = menu.fontSize+2*menu.menuItemPadding;
			if (item.label) {
				item = item.label;
				childMenu = true;
			}
			menu.menuItemHeight = menu.menuItemHeight || defaultHeight;
			var itemProps = '';
			if( menu.fontFamily != '' ) itemProps += 'font-family:' + menu.fontFamily +';';
			itemProps += 'font-weight:' + menu.fontWeight + ';fontSize:' + menu.fontSize + 'px;';
			if (menu.fontStyle) itemProps += 'font-style:' + menu.fontStyle + ';';
			if (document.all || window.mmIsOpera) 
				itemProps += 'font-size:' + menu.fontSize + 'px;" onmouseover="onMenuItemOver(null,this);" onclick="onMenuItemAction(null,this);';
			else if (!document.layers) {
				itemProps += 'font-size:' + menu.fontSize + 'px;';
			}
			var l;
			if (lrs) {
				var lw = menu.menuWidth;
				if( menu.menuItemHAlign == 'right' ) lw -= menu.menuItemPadding;
				l = new Layer(lw,body);
			}
			var itemLeft = 0;
			var itemTop = i*menu.menuItemHeight;
			if( !menu.vertical ) {
				itemLeft = i*menu.menuWidth;
				itemTop = 0;
			}
			var dTag = '<div id="menuItem'+ countItems +'" style="position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';
			var dClose = '</div>'
			if (menu.bgImageUp) dTag = '<div id="menuItem'+ countItems +'" style="background:url('+menu.bgImageUp+');position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';

			var left = 0, top = 0, right = 0, bottom = 0;
			left = 1 + menu.menuItemPadding + menu.menuItemIndent;
			right = left + menu.menuWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
			if( menu.menuItemVAlign == 'top' ) top = menu.menuItemPadding;
			if( menu.menuItemVAlign == 'bottom' ) top = menu.menuItemHeight-menu.fontSize-1-menu.menuItemPadding;
			if( menu.menuItemVAlign == 'middle' ) top = ((menu.menuItemHeight/2)-(menu.fontSize/2)-1);
			bottom = menu.menuItemHeight - 2*menu.menuItemPadding;
			var textProps = 'position:absolute;left:' + left + 'px;top:' + top + 'px;';
			if (lrs) {
				textProps +=itemProps + 'right:' + right + ';bottom:' + bottom + ';';
				dTag = "";
				dClose = "";
			}
			
			if(document.all && !window.mmIsOpera) {
				item = '<div align="' + menu.menuItemHAlign + '">' + item + '</div>';
			} else if (lrs) {
				item = '<div style="text-align:' + menu.menuItemHAlign + ';">' + item + '</div>';
			} else {
				var hitem = null;
				if( menu.menuItemHAlign != 'left' ) {
					if(window.mmIsOpera) {
						var operaWidth = menu.menuItemHAlign == 'center' ? -(menu.menuWidth-2*menu.menuItemPadding) : (menu.menuWidth-6*menu.menuItemPadding);
						hitem = '<div id="menuItemHilite' + countItems + 'Shim" style="position:absolute;top:1px;left:' + menu.menuItemPadding + 'px;width:' + operaWidth + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
						item = '<div id="menuItemText' + countItems + 'Shim" style="position:absolute;top:1px;left:' + menu.menuItemPadding + 'px;width:' + operaWidth + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
					} else {
						hitem = '<div id="menuItemHilite' + countItems + 'Shim" style="position:absolute;top:1px;left:1px;right:-' + (left+menu.menuWidth-3*menu.menuItemPadding) + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
						item = '<div id="menuItemText' + countItems + 'Shim" style="position:absolute;top:1px;left:1px;right:-' + (left+menu.menuWidth-3*menu.menuItemPadding) + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
					}
				} else hitem = null;
			}
			if(document.all && !window.mmIsOpera) item = '<div id="menuItemShim' + countItems + '" style="position:absolute;left:0px;top:0px;">' + item + '</div>';
			var dText	= '<div id="menuItemText'+ countItems +'" style="' + textProps + 'color:'+ menu.fontColor +';">'+ item +'&nbsp</div>\n'
						+ '<div id="menuItemHilite'+ countItems +'" style="' + textProps + 'color:'+ menu.fontColorHilite +';visibility:hidden;">' 
						+ (hitem||item) +'&nbsp</div>';
			if (childMenu) content += ( dTag + dText + '<div id="childMenu'+ countItems +'" style="position:absolute;left:0px;top:3px;"><img src="'+ menu.childMenuIcon +'"></div>\n' + dClose);
			else content += ( dTag + dText + dClose);
			if (lrs) {
				l.document.open("text/html");
				l.document.writeln(content);
				l.document.close();	
				content = '';
				theStat += "-";
				tsc++;
				if (tsc > 50) {
					tsc = 0;
					theStat = "";
				}
				status = theStat;
			}
			countItems++;  
		}
		if (lrs) {
			var focusItem = new Layer(100, body);
			focusItem.visiblity="hidden";
			focusItem.document.open("text/html");
			focusItem.document.writeln("&nbsp;");
			focusItem.document.close();	
		} else {
		  content += '	  <div id="focusItem'+ countMenus +'" style="position:absolute;left:0px;top:0px;visibility:hide;" onclick="onMenuItemAction(null,this);">&nbsp;</div>\n';
		  content += '   </div>\n  </div>\n</div>\n';
		}
		i=x;
	}
	if (document.layers) {		
		container.clip.width = window.innerWidth;
		container.clip.height = window.innerHeight;
		container.onmouseout = mouseoutMenu;
		container.menuContainerBgColor = this.menuContainerBgColor;
		for (var i=0; i<container.document.layers.length; i++) {
			proto = container.menus[i];
			var menu = container.document.layers[i];
			container.menus[i].menuLayer = menu;
			container.menus[i].menuLayer.Menu = container.menus[i];
			container.menus[i].menuLayer.Menu.container = container;
			var body = menu.document.layers[0].document.layers[0];
			body.clip.width = proto.menuWidth || body.clip.width;
			body.clip.height = proto.menuHeight || body.clip.height;
			for (var n=0; n<body.document.layers.length-1; n++) {
				var l = body.document.layers[n];
				l.Menu = container.menus[i];
				l.menuHiliteBgColor = proto.menuHiliteBgColor;
				l.document.bgColor = proto.menuItemBgColor;
				l.saveColor = proto.menuItemBgColor;
				l.onmouseover = proto.onMenuItemOver;
				l.onclick = proto.onMenuItemAction;
				l.mmaction = container.menus[i].actions[n];
				l.focusItem = body.document.layers[body.document.layers.length-1];
				l.clip.width = proto.menuWidth || body.clip.width;
				l.clip.height = proto.menuItemHeight || l.clip.height;
				if (n>0) {
					if( l.Menu.vertical ) l.top = body.document.layers[n-1].top + body.document.layers[n-1].clip.height + proto.menuItemBorder + proto.menuItemSpacing;
					else l.left = body.document.layers[n-1].left + body.document.layers[n-1].clip.width + proto.menuItemBorder + proto.menuItemSpacing;
				}
				l.hilite = l.document.layers[1];
				if (proto.bgImageUp) l.background.src = proto.bgImageUp;
				l.document.layers[1].isHilite = true;
				if (l.document.layers.length > 2) {
					l.childMenu = container.menus[i].items[n].menuLayer;
					l.document.layers[2].left = l.clip.width -13;
					l.document.layers[2].top = (l.clip.height / 2) -4;
					l.document.layers[2].clip.left += 3;
					l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;
				}
			}
			if( proto.menuBgOpaque ) body.document.bgColor = proto.bgColor;
			if( proto.vertical ) {
				body.clip.width  = l.clip.width +proto.menuBorder;
				body.clip.height = l.top + l.clip.height +proto.menuBorder;
			} else {
				body.clip.height  = l.clip.height +proto.menuBorder;
				body.clip.width = l.left + l.clip.width  +proto.menuBorder;
				if( body.clip.width > window.innerWidth ) body.clip.width = window.innerWidth;
			}
			var focusItem = body.document.layers[n];
			focusItem.clip.width = body.clip.width;
			focusItem.Menu = l.Menu;
			focusItem.top = -30;
            focusItem.captureEvents(Event.MOUSEDOWN);
            focusItem.onmousedown = onMenuItemDown;
			if( proto.menuBgOpaque ) menu.document.bgColor = proto.menuBorderBgColor;
			var lite = menu.document.layers[0];
			if( proto.menuBgOpaque ) lite.document.bgColor = proto.menuLiteBgColor;
			lite.clip.width = body.clip.width +1;
			lite.clip.height = body.clip.height +1;
			menu.clip.width = body.clip.width + (proto.menuBorder * 3) ;
			menu.clip.height = body.clip.height + (proto.menuBorder * 3);
		}
	} else {
		if ((!document.all) && (container.hasChildNodes) && !window.mmIsOpera) {
			container.innerHTML=content;
		} else {
			container.document.open("text/html");
			container.document.writeln(content);
			container.document.close();	
		}
		if (!FIND("menuLayer0")) return;
		var menuCount = 0;
		for (var x=0; x<container.menus.length; x++) {
			var menuLayer = FIND("menuLayer" + x);
			container.menus[x].menuLayer = "menuLayer" + x;
			menuLayer.Menu = container.menus[x];
			menuLayer.Menu.container = "menuLayer" + x;
			menuLayer.style.zindex = 1;
		    var s = menuLayer.style;
			s.pixeltop = -300;
			s.pixelleft = -300;
			s.top = '-300px';
			s.left = '-300px';

			var menu = container.menus[x];
			menu.menuItemWidth = menu.menuWidth || menu.menuIEWidth || 140;
			if( menu.menuBgOpaque ) menuLayer.style.backgroundColor = menu.menuBorderBgColor;
			var top = 0;
			var left = 0;
			menu.menuItemLayers = new Array();
			for (var i=0; i<container.menus[x].items.length; i++) {
				var l = FIND("menuItem" + menuCount);
				l.Menu = container.menus[x];
				l.Menu.menuItemLayers[l.Menu.menuItemLayers.length] = l;
				if (l.addEventListener || window.mmIsOpera) {
					l.style.width = menu.menuItemWidth + 'px';
					l.style.height = menu.menuItemHeight + 'px';
					l.style.pixelWidth = menu.menuItemWidth;
					l.style.pixelHeight = menu.menuItemHeight;
					l.style.top = top + 'px';
					l.style.left = left + 'px';
					if(l.addEventListener) {
						l.addEventListener("mouseover", onMenuItemOver, false);
						l.addEventListener("click", onMenuItemAction, false);
						l.addEventListener("mouseout", mouseoutMenu, false);
					}
					if( menu.menuItemHAlign != 'left' ) {
						l.hiliteShim = FIND("menuItemHilite" + menuCount + "Shim");
						l.hiliteShim.style.visibility = "inherit";
						l.textShim = FIND("menuItemText" + menuCount + "Shim");
						l.hiliteShim.style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						l.hiliteShim.style.width = l.hiliteShim.style.pixelWidth;
						l.textShim.style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						l.textShim.style.width = l.textShim.style.pixelWidth;	
					}
				} else {
					l.style.pixelWidth = menu.menuItemWidth;
					l.style.pixelHeight = menu.menuItemHeight;
					l.style.pixelTop = top;
					l.style.pixelLeft = left;
					if( menu.menuItemHAlign != 'left' ) {
						var shim = FIND("menuItemShim" + menuCount);
						shim[0].style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						shim[1].style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						shim[0].style.width = shim[0].style.pixelWidth + 'px';
						shim[1].style.width = shim[1].style.pixelWidth + 'px';
					}
				}
				if( menu.vertical ) top = top + menu.menuItemHeight+menu.menuItemBorder+menu.menuItemSpacing;
				else left = left + menu.menuItemWidth+menu.menuItemBorder+menu.menuItemSpacing;
				l.style.fontSize = menu.fontSize + 'px';
				l.style.backgroundColor = menu.menuItemBgColor;
				l.style.visibility = "inherit";
				l.saveColor = menu.menuItemBgColor;
				l.menuHiliteBgColor = menu.menuHiliteBgColor;
				l.mmaction = container.menus[x].actions[i];
				l.hilite = FIND("menuItemHilite" + menuCount);
				l.focusItem = FIND("focusItem" + x);
				l.focusItem.style.pixelTop = -30;
				l.focusItem.style.top = '-30px';
				var childItem = FIND("childMenu" + menuCount);
				if (childItem) {
					l.childMenu = container.menus[x].items[i].menuLayer;
					childItem.style.pixelLeft = menu.menuItemWidth -11;
					childItem.style.left = childItem.style.pixelLeft + 'px';
					childItem.style.pixelTop = (menu.menuItemHeight /2) -4;
					childItem.style.top = childItem.style.pixelTop + 'px';
					l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;
				}
				l.style.cursor = "hand";
				menuCount++;
			}
			if( menu.vertical ) {
				menu.menuHeight = top-1-menu.menuItemSpacing;
				menu.menuWidth = menu.menuItemWidth;
			} else {
				menu.menuHeight = menu.menuItemHeight;
				menu.menuWidth = left-1-menu.menuItemSpacing;
			}

			var lite = FIND("menuLite" + x);
			var s = lite.style;
			s.pixelHeight = menu.menuHeight +(menu.menuBorder * 2);
			s.height = s.pixelHeight + 'px';
			s.pixelWidth = menu.menuWidth + (menu.menuBorder * 2);
			s.width = s.pixelWidth + 'px';
			if( menu.menuBgOpaque ) s.backgroundColor = menu.menuLiteBgColor;

			var body = FIND("menuFg" + x);
			s = body.style;
			s.pixelHeight = menu.menuHeight + menu.menuBorder;
			s.height = s.pixelHeight + 'px';
			s.pixelWidth = menu.menuWidth + menu.menuBorder;
			s.width = s.pixelWidth + 'px';
			if( menu.menuBgOpaque ) s.backgroundColor = menu.bgColor;

			s = menuLayer.style;
			s.pixelWidth  = menu.menuWidth + (menu.menuBorder * 4);
			s.width = s.pixelWidth + 'px';
			s.pixelHeight  = menu.menuHeight+(menu.menuBorder*4);
			s.height = s.pixelHeight + 'px';
		}
	}
	if (document.captureEvents) document.captureEvents(Event.MOUSEUP);
	if (document.addEventListener) document.addEventListener("mouseup", onMenuItemOver, false);
	if (document.layers && window.innerWidth) {
		window.onresize = NS4resize;
		window.NS4sIW = window.innerWidth;
		window.NS4sIH = window.innerHeight;
		setTimeout("NS4resize()",500);
	}
	//document.onmouseup = mouseupMenu; //commented by hari on 13/07/2004. this particular line making conflict with calander control.
	window.mmWroteMenu = true;
	status = "";
}

function NS4resize() {
	if (NS4sIW != window.innerWidth || NS4sIH != window.innerHeight) window.location.reload();
}

function onMenuItemOver(e, l) {
	MM_clearTimeout();
	l = l || this;
	a = window.ActiveMenuItem;
	if (document.layers) {
		if (a) {
			a.document.bgColor = a.saveColor;
			if (a.hilite) a.hilite.visibility = "hidden";
			if (a.Menu.bgImageOver) a.background.src = a.Menu.bgImageUp;
			a.focusItem.top = -100;
			a.clicked = false;
		}
		if (l.hilite) {
			l.document.bgColor = l.menuHiliteBgColor;
			l.zIndex = 1;
			l.hilite.visibility = "inherit";
			l.hilite.zIndex = 2;
			l.document.layers[1].zIndex = 1;
			l.focusItem.zIndex = this.zIndex +2;
		}
		if (l.Menu.bgImageOver) l.background.src = l.Menu.bgImageOver;
		l.focusItem.top = this.top;
		l.focusItem.left = this.left;
		l.focusItem.clip.width = l.clip.width;
		l.focusItem.clip.height = l.clip.height;
		l.Menu.hideChildMenu(l);
	} else if (l.style && l.Menu) {
		if (a) {
			a.style.backgroundColor = a.saveColor;
			if (a.hilite) a.hilite.style.visibility = "hidden";
			if (a.hiliteShim) a.hiliteShim.style.visibility = "inherit";
			if (a.Menu.bgImageUp) a.style.background = "url(" + a.Menu.bgImageUp +")";;
		} 
		l.style.backgroundColor = l.menuHiliteBgColor;
		l.zIndex = 1;
		if (l.Menu.bgImageOver) l.style.background = "url(" + l.Menu.bgImageOver +")";
		if (l.hilite) {
			l.hilite.style.visibility = "inherit";
			if( l.hiliteShim ) l.hiliteShim.style.visibility = "visible";
		}
		l.focusItem.style.pixelTop = l.style.pixelTop;
		l.focusItem.style.top = l.focusItem.style.pixelTop + 'px';
		l.focusItem.style.pixelLeft = l.style.pixelLeft;
		l.focusItem.style.left = l.focusItem.style.pixelLeft + 'px';
		l.focusItem.style.zIndex = l.zIndex +1;
		l.Menu.hideChildMenu(l);
	} else return;
	window.ActiveMenuItem = l;
}

function onMenuItemAction(e, l) {
	l = window.ActiveMenuItem;
	if (!l) return;
	hideActiveMenus();
	if (l.mmaction) eval("" + l.mmaction);
	window.ActiveMenuItem = 0;
}

function MM_clearTimeout() {
	if (mmHideMenuTimer) clearTimeout(mmHideMenuTimer);
	mmHideMenuTimer = null;
	mmDHFlag = false;
}

function MM_startTimeout() {
	if( window.ActiveMenu ) {
		mmStart = new Date();
		mmDHFlag = true;
		mmHideMenuTimer = setTimeout("mmDoHide()", window.ActiveMenu.Menu.hideTimeout);
	}
}

function mmDoHide() {
	if (!mmDHFlag || !window.ActiveMenu) return;
	var elapsed = new Date() - mmStart;
	var timeout = window.ActiveMenu.Menu.hideTimeout;
	if (elapsed < timeout) {
		mmHideMenuTimer = setTimeout("mmDoHide()", timeout+100-elapsed);
		return;
	}
	mmDHFlag = false;
	hideActiveMenus();
	window.ActiveMenuItem = 0;
}

function MM_showMenu(menu, x, y, child, imgname) {
	if (!window.mmWroteMenu) return;
	MM_clearTimeout();
	if (menu) {
		var obj = FIND(imgname) || document.images[imgname] || document.links[imgname] || document.anchors[imgname];
		x = moveXbySlicePos (x, obj);
		y = moveYbySlicePos (y, obj);
	}
	if (document.layers) {
		if (menu) {
			var l = menu.menuLayer || menu;
			l.top = l.left = 1;
			hideActiveMenus();
			if (this.visibility) l = this;
			window.ActiveMenu = l;
		} else {
			var l = child;
		}
		if (!l) return;
		for (var i=0; i<l.layers.length; i++) { 			   
			if (!l.layers[i].isHilite) l.layers[i].visibility = "inherit";
			if (l.layers[i].document.layers.length > 0) MM_showMenu(null, "relative", "relative", l.layers[i]);
		}
		if (l.parentLayer) {
			if (x != "relative") l.parentLayer.left = x || window.pageX || 0;
			if (l.parentLayer.left + l.clip.width > window.innerWidth) l.parentLayer.left -= (l.parentLayer.left + l.clip.width - window.innerWidth);
			if (y != "relative") l.parentLayer.top = y || window.pageY || 0;
			if (l.parentLayer.isContainer) {
				l.Menu.xOffset = window.pageXOffset;
				l.Menu.yOffset = window.pageYOffset;
				l.parentLayer.clip.width = window.ActiveMenu.clip.width +2;
				l.parentLayer.clip.height = window.ActiveMenu.clip.height +2;
				if (l.parentLayer.menuContainerBgColor && l.Menu.menuBgOpaque ) l.parentLayer.document.bgColor = l.parentLayer.menuContainerBgColor;
			}
		}
		l.visibility = "inherit";
		if (l.Menu) l.Menu.container.visibility = "inherit";
	} else if (FIND("menuItem0")) {
		var l = menu.menuLayer || menu;	
		hideActiveMenus();
		if (typeof(l) == "string") l = FIND(l);
		window.ActiveMenu = l;
		var s = l.style;
		s.visibility = "inherit";
		if (x != "relative") {
			s.pixelLeft = x || (window.pageX + document.body.scrollLeft) || 0;
			s.left = s.pixelLeft + 'px';
		}
		if (y != "relative") {
			s.pixelTop = y || (window.pageY + document.body.scrollTop) || 0;
			s.top = s.pixelTop + 'px';
		}
		l.Menu.xOffset = document.body.scrollLeft;
		l.Menu.yOffset = document.body.scrollTop;
	}
	if (menu) window.activeMenus[window.activeMenus.length] = l;
	MM_clearTimeout();
}

function onMenuItemDown(e, l) {
	var a = window.ActiveMenuItem;
	if (document.layers && a) {
		a.eX = e.pageX;
		a.eY = e.pageY;
		a.clicked = true;
    }
}

function mouseupMenu(e) {
	hideMenu(true, e);
	hideActiveMenus();
	return true;
}

function getExplorerVersion() {
	var ieVers = parseFloat(navigator.appVersion);
	if( navigator.appName != 'Microsoft Internet Explorer' ) return ieVers;
	var tempVers = navigator.appVersion;
	var i = tempVers.indexOf( 'MSIE ' );
	if( i >= 0 ) {
		tempVers = tempVers.substring( i+5 );
		ieVers = parseFloat( tempVers ); 
	}
	return ieVers;
}

function mouseoutMenu() {
	if ((navigator.appName == "Microsoft Internet Explorer") && (getExplorerVersion() < 4.5))
		return true;
	hideMenu(false, false);
	return true;
}

function hideMenu(mouseup, e) {
	var a = window.ActiveMenuItem;
	if (a && document.layers) {
		a.document.bgColor = a.saveColor;
		a.focusItem.top = -30;
		if (a.hilite) a.hilite.visibility = "hidden";
		if (mouseup && a.mmaction && a.clicked && window.ActiveMenu) {
 			if (a.eX <= e.pageX+15 && a.eX >= e.pageX-15 && a.eY <= e.pageY+10 && a.eY >= e.pageY-10) {
				setTimeout('window.ActiveMenu.Menu.onMenuItemAction();', 500);
			}
		}
		a.clicked = false;
		if (a.Menu.bgImageOver) a.background.src = a.Menu.bgImageUp;
	} else if (window.ActiveMenu && FIND("menuItem0")) {
		if (a) {
			a.style.backgroundColor = a.saveColor;
			if (a.hilite) a.hilite.style.visibility = "hidden";
			if (a.hiliteShim) a.hiliteShim.style.visibility = "inherit";
			if (a.Menu.bgImageUp) a.style.background = "url(" + a.Menu.bgImageUp +")";
		}
	}
	if (!mouseup && window.ActiveMenu) {
		if (window.ActiveMenu.Menu) {
			if (window.ActiveMenu.Menu.hideOnMouseOut) MM_startTimeout();
			return(true);
		}
	}
	return(true);
}

function hideChildMenu(hcmLayer) {
	MM_clearTimeout();
	var l = hcmLayer;
	for (var i=0; i < l.Menu.childMenus.length; i++) {
		var theLayer = l.Menu.childMenus[i];
		if (document.layers) theLayer.visibility = "hidden";
		else {
			theLayer = FIND(theLayer);
			theLayer.style.visibility = "hidden";
			if( theLayer.Menu.menuItemHAlign != 'left' ) {
				for(var j = 0; j < theLayer.Menu.menuItemLayers.length; j++) {
					var itemLayer = theLayer.Menu.menuItemLayers[j];
					if(itemLayer.textShim) itemLayer.textShim.style.visibility = "inherit";
				}
			}
		}
		theLayer.Menu.hideChildMenu(theLayer);
	}
	if (l.childMenu) {
		var childMenu = l.childMenu;
		if (document.layers) {
			l.Menu.MM_showMenu(null,null,null,childMenu.layers[0]);
			childMenu.zIndex = l.parentLayer.zIndex +1;
			childMenu.top = l.Menu.menuLayer.top + l.Menu.submenuYOffset;
			if( l.Menu.vertical ) {
				if( l.Menu.submenuRelativeToItem ) childMenu.top += l.top + l.parentLayer.top;
				childMenu.left = l.parentLayer.left + l.parentLayer.clip.width - (2*l.Menu.menuBorder) + l.Menu.menuLayer.left + l.Menu.submenuXOffset;
			} else {
				childMenu.top += l.top + l.parentLayer.top;	
				if( l.Menu.submenuRelativeToItem ) childMenu.left = l.Menu.menuLayer.left + l.left + l.clip.width + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;
				else childMenu.left = l.parentLayer.left + l.parentLayer.clip.width - (2*l.Menu.menuBorder) + l.Menu.menuLayer.left + l.Menu.submenuXOffset;
			}
			if( childMenu.left < l.Menu.container.clip.left ) l.Menu.container.clip.left = childMenu.left;
			var w = childMenu.clip.width+childMenu.left-l.Menu.container.clip.left;
			if (w > l.Menu.container.clip.width)  l.Menu.container.clip.width = w;
			var h = childMenu.clip.height+childMenu.top-l.Menu.container.clip.top;
			if (h > l.Menu.container.clip.height) l.Menu.container.clip.height = h;
			l.document.layers[1].zIndex = 0;
			childMenu.visibility = "inherit";
		} else if (FIND("menuItem0")) {
			childMenu = FIND(l.childMenu);
			var menuLayer = FIND(l.Menu.menuLayer);
			var s = childMenu.style;
			s.zIndex = menuLayer.style.zIndex+1;
			if (document.all || window.mmIsOpera) {
				s.pixelTop = menuLayer.style.pixelTop + l.Menu.submenuYOffset;
				if( l.Menu.vertical ) {
					if( l.Menu.submenuRelativeToItem ) s.pixelTop += l.style.pixelTop;
					s.pixelLeft = l.style.pixelWidth + menuLayer.style.pixelLeft + l.Menu.submenuXOffset;
					s.left = s.pixelLeft + 'px';
				} else {
					s.pixelTop += l.style.pixelTop;
					if( l.Menu.submenuRelativeToItem ) s.pixelLeft = menuLayer.style.pixelLeft + l.style.pixelLeft + l.style.pixelWidth + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;
					else s.pixelLeft = (menuLayer.style.pixelWidth-4*l.Menu.menuBorder) + menuLayer.style.pixelLeft + l.Menu.submenuXOffset;
					s.left = s.pixelLeft + 'px';
				}
			} else {
				var top = parseInt(menuLayer.style.top) + l.Menu.submenuYOffset;
				var left = 0;
				if( l.Menu.vertical ) {
					if( l.Menu.submenuRelativeToItem ) top += parseInt(l.style.top);
					left = (parseInt(menuLayer.style.width)-4*l.Menu.menuBorder) + parseInt(menuLayer.style.left) + l.Menu.submenuXOffset;
				} else {
					top += parseInt(l.style.top);
					if( l.Menu.submenuRelativeToItem ) left = parseInt(menuLayer.style.left) + parseInt(l.style.left) + parseInt(l.style.width) + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;
					else left = (parseInt(menuLayer.style.width)-4*l.Menu.menuBorder) + parseInt(menuLayer.style.left) + l.Menu.submenuXOffset;
				}
				s.top = top + 'px';
				s.left = left + 'px';
			}
			childMenu.style.visibility = "inherit";
		} else return;
		window.activeMenus[window.activeMenus.length] = childMenu;
	}
}

function hideActiveMenus() {
	if (!window.activeMenus) return;
	for (var i=0; i < window.activeMenus.length; i++) {
		if (!activeMenus[i]) continue;
		if (activeMenus[i].visibility && activeMenus[i].Menu && !window.mmIsOpera) {
			activeMenus[i].visibility = "hidden";
			activeMenus[i].Menu.container.visibility = "hidden";
			activeMenus[i].Menu.container.clip.left = 0;
		} else if (activeMenus[i].style) {
			var s = activeMenus[i].style;
			s.visibility = "hidden";
			s.left = '-200px';
			s.top = '-200px';
		}
	}
	if (window.ActiveMenuItem) hideMenu(false, false);
	window.activeMenus.length = 0;
}

function moveXbySlicePos (x, img) { 
	if (!document.layers) {
		var onWindows = navigator.platform ? navigator.platform == "Win32" : false;
		var macIE45 = document.all && !onWindows && getExplorerVersion() == 4.5;
		var par = img;
		var lastOffset = 0;
		while(par){
			if( par.leftMargin && ! onWindows ) x += parseInt(par.leftMargin);
			if( (par.offsetLeft != lastOffset) && par.offsetLeft ) x += parseInt(par.offsetLeft);
			if( par.offsetLeft != 0 ) lastOffset = par.offsetLeft;
			par = macIE45 ? par.parentElement : par.offsetParent;
		}
	} else if (img.x) x += img.x;
	return x;
}

function moveYbySlicePos (y, img) {
	if(!document.layers) {
		var onWindows = navigator.platform ? navigator.platform == "Win32" : false;
		var macIE45 = document.all && !onWindows && getExplorerVersion() == 4.5;
		var par = img;
		var lastOffset = 0;
		while(par){
			if( par.topMargin && !onWindows ) y += parseInt(par.topMargin);
			if( (par.offsetTop != lastOffset) && par.offsetTop ) y += parseInt(par.offsetTop);
			if( par.offsetTop != 0 ) lastOffset = par.offsetTop;
			par = macIE45 ? par.parentElement : par.offsetParent;
		}		
	} else if (img.y >= 0) y += img.y;
	return y;
}

//end	
function mmLoadMenus() {
  if (window.mm_menu_0621115156_0) return;
  window.mm_menu_0621115156_0 = new Menu("root",70,16,"Arial, Helvetica, sans-serif",12,"#000000","#FFFFFF","#7fc372","#7fc372","left","middle",3,0,1000,-5,3,true,true,true,2,true,true);
  mm_menu_0621115156_0.addMenuItem("Sales","location='reports.asp'");
   mm_menu_0621115156_0.fontWeight="bold";
   mm_menu_0621115156_0.hideOnMouseOut=true;
   mm_menu_0621115156_0.bgColor='#333333';
   mm_menu_0621115156_0.menuBorder=1;
   mm_menu_0621115156_0.menuLiteBgColor='#FFFFFF';
   mm_menu_0621115156_0.menuBorderBgColor='#CCCCCC';

mm_menu_0621115156_0.writeMenus();
}

function openReport(strURL)
{
	if (screen.width == "800")
	{
		winStatus = window.open(strURL,'NewWindow','menubar=no,toolbar=no,location=no,hotkeys=no,status=yes,copyhistory=no,width=1020,height=750,scrollbars=yes,top=0,left=0',preview=0)
	}
	else
	{
		winStatus = window.open(strURL,'NewWindow','menubar=no,toolbar=no,location=no,hotkeys=no,status=yes,copyhistory=no,width=1020,height=750,scrollbars=yes,top=0,left=0',preview=0)
	}
}


function PopupWindow(strURL)
{

	if (screen.width == "800")
	{
		winStatus = window.open(strURL,'NewWindow','menubar=no,toolbar=no,location=no,hotkeys=no,status=yes,copyhistory=no,width=1020,height=750,scrollbars=yes,top=0,left=0')
	}
	else
	{
		winStatus = window.open(strURL,'NewWindow','menubar=no,toolbar=no,location=no,hotkeys=no,status=yes,copyhistory=no,width=995,height=650,scrollbars=yes,top=20,left=0')
	}
}

function ValidateMaxLength(source,intLength,strSourceName)
{
	if (source.value.length > intLength)
	{
	
		alert("Please enter only " + intLength + " characters in " + strSourceName + "." );
		source.focus();	
		//source.select();
		return false;
	}
	else
	{
		return true;
	}	
}

function ValidateTextboxLength(source,intLength,strSourceName)
{
	if (source.value.length > intLength)
	{
	
		alert("Please enter only " + intLength + " characters in " + strSourceName + "." );
		source.focus();	
		//source.select();
		return false;
	}
	else
	{
		return true;
	}	
}


function isempty(strToCheck)
{
	var bStringEmpty = true;
	
	//getting the length of the string
	var nLength = strToCheck.length
	
	//checking the length of the contents of the text box
	
	if(nLength > 0)
	{
		
		for(i=0;i<nLength;i++)
		{
			if (strToCheck.charAt(i) != " " && strToCheck.charAt(i) != "\t" && strToCheck.charCodeAt(i) != 13 && strToCheck.charCodeAt(i) != 10 )
			{
				bStringEmpty = false;
				break;
			}
		}
	}
	return bStringEmpty;
}

// Email Check

function emailCheck(email)
{
	var intI=1;
	var intCounter=0;
	strEmail=email.value;
	var strEmailLength = strEmail.length;
	var check =1;
	 /*if (email.value == '')	
	 {
	 	alert('Please enter an E-mail ID.');
	 	email.focus();
	 	check = 0; 
	 	return check;
	 }*/
	 // look for @
	 while ((intI < strEmailLength) && (strEmail.charAt(intI) != "@"))
	 { intI++ }
	 if ((intI >= strEmailLength) || (strEmail.charAt(intI) != "@"))
	 {
	 	//alert('E-mail ID should be of the form - name@company.com or name@company.co.country. Please try again.');
	 //	email.focus();
	 	check = 0; 
	 	return check;
	 }
	 
	else intI += 2;
    // look for .
    while ((intI < strEmailLength) && (strEmail.charAt(intI) != "."))
	{ intI++     }
	// there must be at least one character after the .
    diff=strEmailLength - intI;
	if ((intI >= strEmailLength - 1) || (strEmail.charAt(intI) != ".")) 
	{
	   // alert('E-mail ID should be of the form - name@company.com or name@company.co.country. Please try again.');
    	//email.focus();
	    check = 0; 
		return check;
	}
	
	//checking for two continuous "."
	 
	 for(i=0; i < strEmailLength; i++)
	 {
	    if(strEmail.charAt(i) == ".")
	    {
	   	if(strEmail.charAt(i+1) == ".")
	   	{
	   		//alert('E-mail ID should be of the form - name@company.com or name@company.co.country. Please try again.');
	   	//	email.focus();
	   		check = 0; 
	   		return check;
	   	}
	   }
	}
	 	 
	var valid1="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ@._0123456789-'";
    var temp1;
	var fieldx=email.value;
	for (var intI=0; intI <fieldx.length; intI++) 
	{
		temp1 = "" + fieldx.substring(intI, intI+1);
	    if(temp1 == "@")
		{
			intCounter=intCounter+1;
		}
		if (valid1.indexOf(temp1) == "-1")
		{
		//	alert("E-mail ID should be of the form - name@company.com or name@company.co.country. Please try again.");
		//	email.focus();
			check = 0; 
	 		return check;
		}
	}
	var strSourceField = email.value;
	var blnNumCheckStatus = true;
	var intDectot  = 0;
	var intDecpos  = 0;
	var strValidchars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ@._0123456789-";
	for(var intDecCount=0; intDecCount<strSourceField.length;intDecCount++) 
	{
		if(strSourceField.charAt(intDecCount)=='@') 
		{
			intDectot++;
			intDecpos = (intDecCount+1);
		}
		if (intDectot>1)
		{
			blnNumCheckStatus = false;
		}
	}
	if(blnNumCheckStatus==false)
	{
		//alert("E-mail ID should be of the form - name@company.com or name@company.co.country. Please try again.");
		//email.focus();
		return blnNumCheckStatus;
	}
	if ((email.value.length < 6) || (email.value.length > 80))
	{
		//alert("E-mail ID should be of the form - name@company.com or name@company.co.country. Please try again.");
		//email.focus();
		check = 0; 
	 //	return check;
	}
	var invalid = " "; // Invalid character is a space
	if (email.value.indexOf(invalid) > -1) 
	{
	//	alert("E-mail ID should be of the form - name@company.com or name@company.co.country. Please try again.");
	//	email.focus();
		check = 0; 
		return check;
	}
	var strSourceField = email.value;
	var blnNumCheckStatus = true;
	var intDectot  = 0;
	var intDecpos  = 0;
	var strValidchars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ@._0123456789-";
	for(var intDecCount=0; intDecCount<strSourceField.length;intDecCount++) 
	{
		if(strSourceField.charAt(intDecCount)=='@') 
		{
			intDectot++;
			intDecpos = (intDecCount+1);
		}
		if (intDectot>1)
		{
			blnNumCheckStatus = false;
		}
	}
	if(blnNumCheckStatus==false)
	{
		//alert("E-mail ID should be of the form - name@company.com or name@company.co.country. Please try again. ");
		//email.focus();
		return blnNumCheckStatus;
	}
	
	return check;
}
function PhoneNumberCheck(Field)
{
	var strTmp = Field.value;  	
	var intBlankOccurance = 0;
	var intHypenOccurance = 0;
	var strAlertMsg;
	var valid = "1234567890 +" ;
	var temp;
	
	for (var i=0; i<strTmp.length; i++)
	{
		temp = ""+ strTmp.substring(i, i+1);
				
		if (valid.indexOf(temp) == -1) 
		{
			return false;
			break;
		}
	/*	else
		{
			if(temp == " ")
			{
				intBlankOccurance = intBlankOccurance + 1;
			}
			else if(temp == "-")
			{
				intHypenOccurance = intHypenOccurance + 1;
			}
		} */
	}
	//if (intBlankOccurance > 1 || intHypenOccurance > 1 )
	//	return false;
	//else
		return true;   	
}

//-- Common Function to validate where the ctrl value has valid Name.
function fnCheckFLName(ObjCtrl,strTitle)
{
		var strTmp = ObjCtrl.value;  	
		
		var valid = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' " ;
		var temp;
		for (var i=0; i<strTmp.length; i++)
		{
			temp = ""+ strTmp.substring(i, i+1);
					
			if (valid.indexOf(temp) == -1) 
			{
				alert("Please enter only alphabetic characters, single quote and space in " + strTitle + ".");
				ObjCtrl.focus();
				return false;
				break;
			}
		}
		return true;   	
}

//-- Common Function to validate where the ctrl value has valid EmailID.
function fnCheckEmail(ObjCtrl, strTtile,strType)
{
        if (strType =="No")
		{
		var strValue = ObjCtrl;
		}
		else
		{
		var strValue = ObjCtrl.value;
		}
		var filter  = /^([a-zA-Z0-9_\.\-'])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
		if (!filter.test(strValue))
		{
			alert("E-mail ID should be of the form - name@company.com or name@company.co.country in " + strTtile + ". Please try again.");
			if (strType !="No")
			{
			ObjCtrl.focus();
			}
			return false;			
		}  
		return true;			        
}	

//-- Common Function to validate where the ctrl value has valid Phone Numbers with Plus sign and etc.
function fnCheckPhoneNumberPlus(ObjCtrl,strTitle)
{
		var strTmp = ObjCtrl.value;
	
		var valid = "1234567890 +()-" ;
		var ok = "yes";
		var temp;
		for (var i=0; i<strTmp.length; i++)
		{
			temp = ""+ strTmp.substring(i, i+1);
					
			if (valid.indexOf(temp) == -1) 
			{
				ok = "no";
				break;
			}
		}
		if (ok == "no")
		{  
			alert("Please enter only numbers, space, brackets, hyphen and plus in " + strTitle + ".")
			ObjCtrl.focus();
			return false;
		}	

		return true;
}

//-- Common Function to validate where the ctrl value has valid Name.
function fnCheckCompanyName(ObjCtrl,strTitle)
{
		var strTmp = ObjCtrl.value;  	
		
		var valid = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'. " ;
		var temp;
		for (var i=0; i<strTmp.length; i++)
		{
			temp = ""+ strTmp.substring(i, i+1);
					
			if (valid.indexOf(temp) == -1) 
			{
				alert("Please enter only alphabetic characters, single quote,dot and space in " + strTitle + ".");
				ObjCtrl.focus();
				return false;
				break;
			}
		}
		return true;   	
}