<!-- 
function AbsolutePosition(strObjectName, strAxis){
	if (document.getElementById) {     //  IE 5+, NS6+, Mozilla
			 objHTMLObject = document.getElementById(strObjectName);
	}
	else if(document.all) { 
			 objHTMLObject = document.all.item(strObjectName);
	}

	if (strAxis.toUpperCase() == 'Y'){
		var intTempPos = objHTMLObject.offsetTop;
		var strTagName = objHTMLObject.tagName;

		while(strTagName != "BODY"){
			objHTMLObject = objHTMLObject.offsetParent;
			intTempPos = intTempPos + objHTMLObject.offsetTop;
			strTagName = objHTMLObject.tagName;
		} 
	}
	else if (strAxis.toUpperCase() == 'X'){
		var intTempPos = objHTMLObject.offsetLeft;
		
		var strTagName = objHTMLObject.tagName;
		
		while(strTagName != "BODY"){
			objHTMLObject = objHTMLObject.offsetParent;
			intTempPos = intTempPos + objHTMLObject.offsetLeft;
			strTagName = objHTMLObject.tagName;
		} 
	} else {
		var intTempPos = 0;
	}
	
	return intTempPos;
}

function ShowSubMenu(MenuID){
	document.getElementById("Menu" + MenuID).style.backgroundColor = '#1C71B8';
	document.getElementById("Menu" + MenuID).style.cursor='pointer';
	document.getElementById("Menu" + MenuID).style.color='#FFF';
	
	var objMenu = document.getElementById("SubMenu"+ MenuID);
	var intPosY = AbsolutePosition("Menu" + MenuID , "Y") + 1;
	var intPosX = AbsolutePosition("Menu" + MenuID , "X") + 239;
	
	objMenu.style.left = intPosX + "px";
	objMenu.style.top = intPosY + "px";
	objMenu.style.display = "block";
	
	objMenu = null;
}

function HideSubMenu(MenuID){
	document.getElementById("Menu" + MenuID).style.backgroundColor = '';
	document.getElementById("Menu" + MenuID).style.cursor='';
	document.getElementById("Menu" + MenuID).style.color='';

	var objMenu = document.getElementById("SubMenu"+ MenuID);
	
	objMenu.style.display = "none";
	
	objMenu = null;
}

function Search(){
	
	if(document.frm_search.txtSearch.value.length > 0 && document.frm_search.txtSearch.value != 'Enter your search'){
		return true;
	} else {
		return false;
	}
	
}

function GoUrl(strUrl){
	document.location.href = strUrl;
}
-->