<!--
var currColor = "#000000";

function pageOnLoad(){
	window.status = "Welcome to Dubai Electricity and Water Authority" ;	
}

function highlight(theElem,pos,mode)
{
	if (mode == 1){			
		//saving the current color before changing it
		currColor = theElem.style.color ;	
		switch(pos){
			case "header":		
				theElem.style.color = "#00FFFF";
				break;
			case "level2Links":				
				theElem.style.color = "#FF0000";
				break;
			case "bodyLinks":				
				theElem.style.color = "#FF0000";
				break;
			case "footerLinks":				
				theElem.style.color = "#FF0000";
				break;
	} // end of pos switch
	}
	else{		
			theElem.style.color = currColor;
		}	
}

function winPopUp(theURL,theHeight,theWidth,theTop,theLeft)
{
	configStr = "height="+theHeight+",width="+theWidth+",top="+theTop+",left="+theLeft+",scrollbars=yes,resizable=yes";

	newWin = open(theURL,"NewWin",config=configStr);
}


function bookMarkPage(theURL){

var theTitle = document.title;

if (document.all){
		window.external.AddFavorite(theURL,theTitle)
	}

}


//-->