function openWin(site, winName, w, h)
{
myWin=window.open(site, winName, "width="+w+",height="+h+",scrollbars=yes,menu=no,toolbar=no,status=yes,location=no,resizable=yes,resize=yes")
myWin.focus()
}

function openWin2(site, winName, w, h)
{
myWin=window.open(site, winName, "width="+w+",height="+h+",scrollbars=yes,menu=yes,toolbar=yes,status=yes,location=yes,resizable=yes,resize=yes")
myWin.focus()
}

home_images=new Array();
    home_images[0]='images/home_ran_image_1.jpg';
    home_images[1]='images/home_ran_image_2.jpg';
    home_images[2]='images/home_ran_image_3.jpg';

    function load_ran_image()
    {
    	if (document.images)
    	{
        randomNum=Math.floor
        ((Math.random()*home_images.length))
        document.random_image.src=home_images[randomNum]
        
       	}
    }
