  function inscripcion() {

     var newWin = window.open("inscrip.php", "", "width=375, height=430,top=40,left=200,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbar=0,resizable=0");
    if (navigator.appVersion.indexOf("(X11") != -1 ||
        navigator.appVersion.indexOf("(Mac") != -1)
      newWin = window.open("inscrip.php", "", "width=375, height=430,top=40,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbar=0,resizable=0");

  }
  
    function offer() {
     var newWin = window.open("pedcomp.php?lotec=1020", "", "width=715, height=528,top=10,left=10,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbar=0,resizable=0");
    if (navigator.appVersion.indexOf("(X11") != -1 ||
        navigator.appVersion.indexOf("(Mac") != -1)
      newWin = window.open("pedcomp.php?lotec=$lotec&marca=$marca&modelo=$modelo&year=$anio&price=$precio", "", "width=715, height=528,top=10,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbar=0,resizable=0");

  }


function click(){
   if(event.button==2){
   alert("Copyright. © USA MIAMI CARS\n\n Pay Less For More Quality");
   }
}
document.onmousedown=click
var slideCache = new Array();
function RunSlideShow(pictureName,imageFiles,displaySecs)
{
var imageSeparator = imageFiles.indexOf(";");
var nextImage = imageFiles.substring(0,imageSeparator);
if (document.all)
{
document.getElementById(pictureName).style.filter="blendTrans(duration=2)";
document.getElementById(pictureName).filters.blendTrans.Apply();
}
document.getElementById(pictureName).src = nextImage;
if (document.all)
{
document.getElementById(pictureName).filters.blendTrans.Play();
}
var futureImages= imageFiles.substring(imageSeparator+1,imageFiles.length)
+ ';' + nextImage;
setTimeout("RunSlideShow('"+pictureName+"','"+futureImages+"',"+displaySecs+")",
displaySecs*1000);
// Cache the next image to improve performance.
imageSeparator = futureImages.indexOf(";");
nextImage = futureImages.substring(0,imageSeparator);
if (slideCache[nextImage] == null) {
slideCache[nextImage] = new Image;
slideCache[nextImage].src = nextImage;
}
}