	var   ifm=null;   
	var	  twidth=425;
	var	  theight=234;
	var   tclientwidth = 195;
  	function   showVehicle(info,tempwidth,tempheight,tempcwidth){  
  		if(tempwidth != undefined)
  			twidth = tempwidth;
  		if(tempheight != undefined)
  			theight = tempheight;
  		if(tempcwidth != undefined)
  			tclientwidth = tempcwidth;
  		for(var i=0;i<document.getElementsByTagName("a").length;i++){
  			document.getElementsByTagName("a")[i].style.position="";
  			document.getElementsByTagName("a")[i].style.zIndex="";
  		}
  		var  pBody;   
  		pBody=init1();   
  		initAlertBody(pBody,info,tclientwidth);   
  		pBody.focus();   
  	}   

  function   init1(){   
  	if(ifm==null){   
  		ifm=document.createElement("<iframe   allowTransparency='true'   id='popframe'   frameborder=0   marginheight=0   src='about:blank'   marginwidth=0   hspace=0   vspace=0   scrolling=auto></iframe>")   
  		ifm.style.position="absolute";   
  		document.body.appendChild(ifm);   
  	}else{   
  		ifm.style.visibility="visible";   
  	}   
  	ifm.style.width=screen.availWidth;   
  	ifm.style.height=window.document.body.clientHeight;   
  	ifm.style.left=document.body.scrollLeft;   
  	ifm.style.top=document.body.scrollTop;   
  	ifm.name=ifm.uniqueID;   
  	var   win=window.frames[ifm.name];   
  	win.document.write("<body   leftmargin=0   topmargin=0 oncontextmenu='self.event.returnValue=false' ><div   id=popbg></div><div   id=popbody ></div></body>");   
  	win.document.body.style.backgroundColor="transparent";   
  	document.body.style.overflow="hidden";   
  	var   pBody=win.document.body.children[1];   
  	var   pBg=win.document.body.children[0];   
 	initBg(pBg);   
  	return   pBody;   
  }   

  function   initBg(obj){   
  	with(obj.style){   
  		position="absolute";   
  		left="0";   
  		top="0";   
  		width="100%";   
  		height="100%";   
  		visibility="hidden";   
  		backgroundColor="#333333";   
  		filter="blendTrans(duration=1)   alpha(opacity=60)";   
  	}   
  	if(obj.filters.blendTrans.status!=2){
  		obj.filters.blendTrans.apply();   
  		obj.style.visibility="visible";   
  		obj.filters.blendTrans.play();   
  	}   
  }   

  function   initAlertBody(obj,info,tclientwidth){   
  	with(obj.style){   
  		position="absolute";   
  		width=twidth;   
  		height=theight;   
  		backgroundColor="#ffffff";   
  	}   
  	var h=document.documentElement.clientHeight;
	var sh=document.documentElement.scrollTop;
  	obj.style.left=window.document.documentElement.clientWidth/2-tclientwidth;   
  	obj.style.top=Math.round((h-obj.offsetHeight)/2+sh);   
  	var   str;   
  	str="<iframe     id='vehicleframe'    frameborder=0   marginheight=0   src='"+info+"'   marginwidth=0   hspace=0   vspace=0   scrolling=no width=100% height=100%></iframe>";
 	 obj.innerHTML=str;   
  }   

  function   closeWin(){   
  	ifm.style.visibility="hidden";      
  	document.body.style.overflow="auto";   
  	  	for(var i=0;i<document.getElementsByTagName("a").length;i++){
  			document.getElementsByTagName("a")[i].style.position="relative";
  			document.getElementsByTagName("a")[i].style.zIndex="1";
  		}
   }    