/////////////////////////////////////////////////////////////////////////DRop Dowwn Menus

function HideAll(){
	MM_showHideLayers('d1','','hide');
	MM_showHideLayers('d2','','hide');
	MM_showHideLayers('d3','','hide');
	MM_showHideLayers('d4','','hide');
	MM_showHideLayers('hide','','hide')
}

function ShowHide(id,left,top){
	P7_Snap('first'+id,'d'+id,left,top);
	MM_showHideLayers('d'+id,'','show')
	MM_showHideLayers('hide','','show')
}

////////////////////////////////////////////////////////////////////////////DROP DOWN LIST

function GetList(Name,Min,Max,Old,WithEmpty,PrivateStyle)
{
	document.write("<SELECT NAME="+Name+" SIZE=1 "+PrivateStyle+">");
	if (WithEmpty) document.write("<OPTION value=''> "+WithEmpty+"</OPTION>");
	for (i=Min;i<=Max;i++)
	{
		if ((i<10)&&(i>-1)) {Z=0;} else {Z='';}
		if (i==Old) {Selct='SELECTED=SELECTED'} else {Selct='';}
		document.write("<OPTION value="+Z+i+" "+Selct+">"+Z+i+"</OPTION>");
	}
	document.write("</SELECT>");
}

//////////////////////////////////////////////////////////////////////////Search Pages
function ValidateArea(numb)
{
	count = 0;
	for(i=1;i<=numb;i++)
	{
		if(document.getElementById('Area' + i).checked) count++;		
	}
	
	if(count == 0)
	{
		alert("Please Select at least 1 Area of Search");
		return;
	}
	
	document.form1.submit();
}

function AreaSelect(area,numb,AreaName)
{
	count = 0;
	box = -1;

	if(locations[0] == 0) box = 1;
	else if(locations[1] == 0) box = 2;
	else if(locations[2] == 0) box = 3;
	
	if(locations[0] == area) box = 1;
	else if(locations[1] == area) box = 2;
	else if(locations[2] == area) box = 3;	

	for(i=1;i<=numb;i++)
	{
		if(document.getElementById('Area' + i).checked) count++;		
	}

	if(count > 3)
	{
		alert('You can choose a Maximum of 3 Areas');
		document.getElementById('Area' + area).checked = false;
		return false;
	}
	
	Aray = eval(document.getElementById('Area' + area)).value;
	
	if(document.getElementById('Area' + area).checked)
	{		
		for(j=0;j < eval(Aray).length;j++){
			var newOpt = document.createElement("OPTION");
			newOpt.text = eval(Aray)[j][0];
			newOpt.value = eval(Aray)[j][1];
			if(j==0) newOpt.selected = true; 
			document.getElementById('AreaLocation' + box + '[]').add(newOpt);
		}
		locations[box-1] = area;
	}
	else
	{
		if (eval(Aray).length > 0){
			for(i=0;i<=eval(Aray).length;i++){
				document.getElementById('AreaLocation' + box + '[]').remove(i);
			}

			document.getElementById('AreaLocation' + box + '[]').innerHTML = "";
		}
		locations[box-1] = 0;
	}
}

function UncheckAll(numb)
{
	for(i=1;i<=numb;i++)
	{
		
		try
		{
		document.getElementById("Area"+i).checked = false}
		catch(e)
		{
			$('#Area'+i).attr('checked',false);
		}
	}
	EmptyMultipleSelect();
}

function EmptyMultipleSelect()
{
	for(j=1;j<=3;j++){
		var al='AreaLocation' + j + '[]';
		num = document.getElementById(al).length;
		for(i=num;i>-1;i--){
			document.getElementById('AreaLocation' + j + '[]').remove(i);
		}
	}
	document.form1.reset();
	locations = [0,0,0];
}

function ValidateReference()
{
	if (trim(document.form2.Reference.value) == "")
	{
		alert("Please enter Reference Number");
		document.form2.Reference.focus();
		return; 
	}  
	document.form2.submit();
}


/////////////////////////////////////////////////////////////////////////

function flipLinksLand(num1,num2)
{
	document.getElementById('zonix'+num1).style.display = "";
	document.getElementById('zonix'+num2).style.display = "none";
	
	document.getElementById('ZonicBeirut').value = '';
	document.getElementById('ZonicBeirut1').value = '';
	
}

function flipLinks(id)
{
	activeTD = document.getElementById(id);
	activeTD.style.display = (activeTD.style.display == "none") ? "" : "none";
}

function flipbgColor(id)
{
	activeTD0 = document.getElementById(id+'0');
	activeTD =  document.getElementById(id);

	if(activeTD.style.display == "none")
	{
		activeTD0.style.backgroundColor = "#F07A25";
		activeTD0.innerHTML = '<strong>+ Click here for more Search Options</strong>';
	}
	else
	{
		activeTD0.style.backgroundColor = "#2A58A0";
		activeTD0.innerHTML = '<strong>- Click here to hide Search Options</strong>';
	}
}

////////////////////////////////////////////////////////////////////////////Mailing List
function ValidateMailing()
{	 
	if (trim(document.MailingList.FullName.value) == "")
	{
		alert("Please enter your Name");
		document.MailingList.FullName.focus();
		return; 
	}  
	if ( document.MailingList.Email.value.indexOf ('@', 0) == -1 || document.MailingList.Email.value.indexOf ('.', 0) == -1 ) 
	{
		alert("Please enter a valid Email");
		document.MailingList.Email.focus();
		return;
	}

	
	
	document.MailingList.submit();	
	
}

///////////////////////////////////////////////////////////////////////////

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function  SetLink(Details)
{
	
	var arr = window.location.href.split('/');
	var length = arr.length;
	var fileName= arr[length-1];
	
	var arr1 = fileName.split('.');
	var Car =arr1[0];
	var Car2 =Car.split('_');
	
	var Link = Car2[0] + "_"+Details+".html";
	var TheLink = "<a href=\""+Link+"\">";
	document.write(TheLink);
	
}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
function MM_showHideLayers() { //v3.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
    obj.visibility=v; }
}

function P7_Snap() { //v2.61 by PVII
  var x,y,ox,bx,oy,p,tx,a,b,k,d,da,e,el,args=P7_Snap.arguments;a=parseInt(a);
  for (k=0; k<(args.length-3); k+=4)
   if ((g=MM_findObj(args[k]))!=null) {
    el=eval(MM_findObj(args[k+1]));
    a=parseInt(args[k+2]);b=parseInt(args[k+3]);
    x=0;y=0;ox=0;oy=0;p="";tx=1;da="document.all['"+args[k]+"']";
    if(document.getElementById) {
     d="document.getElementsByName('"+args[k]+"')[0]";
     if(!eval(d)) {d="document.getElementById('"+args[k]+"')";if(!eval(d)) {d=da;}}
    }else if(document.all) {d=da;} 
    if (document.all || document.getElementById) {
     while (tx==1) {p+=".offsetParent";
      if(eval(d+p)) {x+=parseInt(eval(d+p+".offsetLeft"));y+=parseInt(eval(d+p+".offsetTop"));
      }else{tx=0;}}
     ox=parseInt(g.offsetLeft);oy=parseInt(g.offsetTop);var tw=x+ox+y+oy;
     if(tw==0 || (navigator.appVersion.indexOf("MSIE 4")>-1 && navigator.appVersion.indexOf("Mac")>-1)) {
      ox=0;oy=0;if(g.style.left){x=parseInt(g.style.left);y=parseInt(g.style.top);
      }else{var w1=parseInt(el.style.width);bx=(a<0)?-5-w1:-10;
      a=(Math.abs(a)<1000)?0:a;b=(Math.abs(b)<1000)?0:b;
      x=document.body.scrollLeft + event.clientX + bx;
      y=document.body.scrollTop + event.clientY;}}
   }else if (document.layers) {x=g.x;y=g.y;var q0=document.layers,dd="";
    for(var s=0;s<q0.length;s++) {dd='document.'+q0[s].name;
     if(eval(dd+'.document.'+args[k])) {x+=eval(dd+'.left');y+=eval(dd+'.top');break;}}}
   if(el) {e=(document.layers)?el:el.style;
   var xx=parseInt(x+ox+a),yy=parseInt(y+oy+b);
   if(navigator.appName=="Netscape" && parseInt(navigator.appVersion)>4){xx+="px";yy+="px";}
   if(navigator.appVersion.indexOf("MSIE 5")>-1 && navigator.appVersion.indexOf("Mac")>-1){
    xx+=parseInt(document.body.leftMargin);yy+=parseInt(document.body.topMargin);
    xx+="px";yy+="px";}e.left=xx;e.top=yy;}}
}
// begin absolutely positioned scrollable area object scripts 
// Extension developed by David G. Miles 
// Original Scrollable Area code developed by Thomas Brattli 
function verifyCompatibleBrowser(){ 
    this.ver=navigator.appVersion 
    this.dom=document.getElementById?1:0 
    this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0; 
    this.ie4=(document.all && !this.dom)?1:0; 
    this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
 
    this.ns4=(document.layers && !this.dom)?1:0; 
    this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5) 
    return this 
} 
bw=new verifyCompatibleBrowser() 
 
 
var speed=50 
 
var loop, timer 
 
function ConstructObject(obj,nest){ 
    nest=(!nest) ? '':'document.'+nest+'.' 
    this.el=bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+'document.'+obj):0; 
    this.css=bw.dom?document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+'document.'+obj):0; 
    this.scrollHeight=bw.ns4?this.css.document.height:this.el.offsetHeight 
    this.clipHeight=bw.ns4?this.css.clip.height:this.el.offsetHeight 
    this.up=MoveAreaUp;this.down=MoveAreaDown; 
    this.MoveArea=MoveArea; this.x; this.y; 
    this.obj = obj + "Object" 
    eval(this.obj + "=this") 
    return this 
} 
function MoveArea(x,y){ 
    this.x=x;this.y=y 
    this.css.left=this.x 
    this.css.top=this.y 
} 
 
function MoveAreaDown(move){ 
	if(this.y>-this.scrollHeight+objContainer.clipHeight){ 
    this.MoveArea(0,this.y-move) 
    if(loop) setTimeout(this.obj+".down("+move+")",speed) 
	} 
} 
function MoveAreaUp(move){ 
	if(this.y<0){ 
    this.MoveArea(0,this.y-move) 
    if(loop) setTimeout(this.obj+".up("+move+")",speed) 
	} 
} 
 
function PerformScroll(speed){ 
	if(initialised){ 
		loop=true; 
		if(speed>0) objScroller.down(speed) 
		else objScroller.up(speed) 
	} 
} 
 
function CeaseScroll(){ 
    loop=false 
    if(timer) clearTimeout(timer) 
} 
var initialised; 
function InitialiseScrollableArea(){ 
    objContainer=new ConstructObject('divContainer') 
    objScroller=new ConstructObject('divContent','divContainer') 
    objScroller.MoveArea(0,0) 
    objContainer.css.visibility='visible' 
    initialised=true; 
} 
// end absolutely positioned scrollable area object scripts 

function trim(inputString) 
{
   if (typeof inputString != "string") { return inputString; }
   var retValue = inputString;
   var ch = retValue.substring(0, 1);
   while (ch == " ") { // Check for spaces at the beginning of the string
      retValue = retValue.substring(1, retValue.length);
      ch = retValue.substring(0, 1);
   }
   ch = retValue.substring(retValue.length-1, retValue.length);
   while (ch == " ") { // Check for spaces at the end of the string
      retValue = retValue.substring(0, retValue.length-1);
     ch = retValue.substring(retValue.length-1, retValue.length);
   }
   while (retValue.indexOf("  ") != -1) { // Note that there are two spaces in the string - look for multiple spaces within the string
      retValue = retValue.substring(0, retValue.indexOf("  ")) + retValue.substring(retValue.indexOf("  ")+1, retValue.length); // Again, there are two spaces in each of the strings
   }
   return retValue; // Return the trimmed string back to the user
}



				