// JavaScript Document

function expandcollapse (faqid,im) 
{ 

   whichfaq   = document.getElementById(faqid);
   whichimage = document.getElementById(im);
   
   
   if (whichfaq.className=="faqshown") { 
             whichfaq.className="faqhidden";
			 whichimage.src="../../images/resource-03.gif";
			 
			 
   } 
   else 
   { 
      		whichfaq.className="faqshown"; 
			whichimage.src="../../images/resource-06.gif";
			
   } 
} 
if(document.layers) 
{
 document.captureEvents(Event.MOUSEDOWN);
 }
 
document.onmousedown=donotsave;
function donotsave(e)
{
    
if(document.layers) 
{
  if((e.which == "2") || (e.which == "3"))
    {
 alert("© All rights reserved. Arab Consulting House (ArabConsult) Co. Ltd.");    
    }
}  
else
{ 
  
 
  if((event.button == 2) || (event.button == "3"))
    {
 alert("© All rights reserved. Arab Consulting House (ArabConsult) Co. Ltd.");    
    }
}
 

}
 
function donotsave1(e)
{
 alert(event.which);
   alert("© All rights reserved. Arab Consulting House (ArabConsult) Co. Ltd.");    
   
 
}

var win = null;
function newWindow(mypage,myname,w,h,features) {
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += features;
  win = window.open(mypage,myname,settings);
  win.window.focus();
}

