  
      <!-- Copyright JBK TECH
   
      // http://www.jbktech.com/ 
   
      
   
      var cX = 0; var cY = 0; var rX = 0; var rY = 0;
   
      function UpdateCursorPosition(e){ cX = e.pageX; cY = e.pageY;}
  
      function UpdateCursorPositionDocAll(e){ cX = event.clientX; cY = event.clientY;}
   
      if(document.all) { document.onmousemove = UpdateCursorPositionDocAll; }
   
      else { document.onmousemove = UpdateCursorPosition; }
  
      function AssignPosition(d) {
  
      if(self.pageYOffset) {
  
      rX = self.pageXOffset;
  
      rY = self.pageYOffset;
  
      }
  
      else if(document.documentElement && document.documentElement.scrollTop) {
  
      rX = document.documentElement.scrollLeft;
  
      rY = document.documentElement.scrollTop;
  
    }
  
      else if(document.body) {
  
      rX = document.body.scrollLeft;
  
      rY = document.body.scrollTop;
  
      }
  
      if(document.all) {
  
      cX += rX;
  
      cY += rY;
  
      }
  
      d.style.left = (cX+10) + "px";
  
      d.style.top = (cY+10) + "px";
  
      }
  
      function HideContent(d) {
  
      if(d.length < 1) { return; }
  
      document.getElementById(d).style.display = "none";
  
      }
  
      function ShowContent(d, path) {
  
      if(d.length < 1) { return; }
  
      var dd = document.getElementById(d);
  		//var image = document.getElementById(pre);
		path="\""+"templetes/"+path+"\"";
      AssignPosition(dd);
  
      dd.style.display = "block";
  		//document.dd.image.src = path;
		//document.write(path);
    
	 //for(i=0;i<=400;i=i+50){
	  document.getElementById('uniquename3').innerHTML = "<img id='temp' src="+path+"></img>";
	 // }
		//document.getElementById('uniquename3').innerHTML = "";
	 init();
	 }
	  
	 
	var foo = null; // object

function doMove() {
  foo.style.width = parseInt(foo.style.width)+10+'px';
  if(parseInt(foo.style.width)>400){return;}
  setTimeout(doMove,100); // call doMove in 20msec
}

function init() {
  //document.getElementById('fooObject').style.left='0px';
  foo = document.getElementById('temp'); // get the "foo" object
  foo.style.left='0px';
  foo.style.width = '0px'; // set its initial position to 0px
  doMove(); // start animating
}


	  
  
      function ReverseContentDisplay(d) {
  
      if(d.length < 1) { return; }
  
      var dd = document.getElementById(d);
  
      AssignPosition(dd);
  
      if(dd.style.display == "none") { dd.style.display = "block"; }
  
      else { dd.style.display = "none"; }
  
      }
	  
	  function pause(millisec){
	var date=new Date();
	var curDate= null;
	do{curDate=new Date();}while(curDate-date<millisec);
	}

function swap(d){
	id=document.getElementById(d);
	if(id.style.display=="none"){
		id.style.display="block";
		}
	else{
		id.style.display="none";
		}
	}
  
      //-->
  
 
