//<!-- Hide script from old browser
function Bookmark(url,title) {
       // Mozilla Firefox 
       if (window.sidebar) {
           window.sidebar.addPanel(title, url,"");
       // IE 
       } else if( window.external ) {
           window.external.AddFavorite(url, title); 
       // Opera 
       } else if(window.opera && window.print) {
           var elem = document.createElement('a');
           elem.setAttribute('href',url);
           elem.setAttribute('title',title);
           elem.setAttribute('rel','sidebar');
           elem.click();
       }
   }
 
if (document.images)
    {
      preload_image_object = new Image();
      image_url = new Array();
      image_url[1] = "images/show.gif";
      image_url[2] = "images/show1.gif";
  
     var i = 1;
     for(i=1; i<=2; i++) 
     preload_image_object.src = image_url[i];

     button1 = new Image
     button2 = new Image
	 button1.src = 'images/show.gif'
     button2.src = 'images/show1.gif'
	 }
	 

//disable right click
IE4plus = (document.all) ? true : false;

function clickIE()
{
    return false;
}

function clickNS(e)
{
	if (e.which==2 || e.which==3) 
     {
       return false;
     }
}	

if (!IE4plus) 
{
   document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP);
   document.onmousedown=clickNS;
   document.onmouseup= clickNS;
   document.oncontextmenu=clickIE; // For NS 6+
} 
else 
{
   document.onmouseup= clickIE;
   document.oncontextmenu=clickIE;
}	 
//End hiding script from old browser-->