﻿// Archivo JScript

    var images = new Array
    var enlace = new Array
        
//Para agregar uno nuevo solo dar de alta uno        
    enlace[1] = "http://www.timothyfuller.com/properties/forsale/condos/horizonph1/index.html"
    enlace[2] = "http://www.timothyfuller.com/properties/forsale/condos/shangri-la/index.html"
    enlace[3] = "http://www.timothyfuller.com/puerto_vallarta_real_estate/forrent/1-3/casaplaya/index.html"
    enlace[4] = "http://www.timothyfuller.com/properties/forsale/villas/medialuna/index.html"
	enlace[5] = "http://www.timothyfuller.com/puerto_vallarta_real_estate/forsale/condos/ochocascadas/index.html"
	enlace[6] = "http://www.rioamapas.com.mx"
    
    images[1] = "http://www.timothyfuller.com/banners/1-hor.gif"
    images[2] = "http://www.timothyfuller.com/banners/3-hor.gif"
    images[3] = "http://www.timothyfuller.com/banners/6-hor.gif"
    images[4] = "http://www.timothyfuller.com/banners/5-hor.gif"
	images[5] = "http://www.timothyfuller.com/banners/7-hor.gif"
	images[6] = "http://www.timothyfuller.com/banners/8-hor.gif"    
    
    
    
    function ChooseBanner(){
        var imagenumber = images.length-1;      
        var randomnumber = Math.random();
        var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1;
        var image = images[rand1]
        document.getElementById("banner").src=image;
//        document.getElementById("abanner").href="javascript:MM_openBrWindow('" + enlace[rand1] + "','','width=750,height=550')";
		document.getElementById("abanner").href="" + enlace[rand1] + "?keepThis=true&TB_iframe=trueheight=500&width=740";
    }
    


