function get_random() {
    var ranNum= Math.round(Math.random()*3);
    return ranNum;
}

function getaQuote() {
   var whichQuote=get_random();

    var quote=new Array(4)
     quote[0]="spotHome";
     quote[1]="spotHome2";
     quote[2]="spotHome3";
     quote[3]="spotHome4";

   return(quote[whichQuote]);
}

function openWindow(newpath) {
	window.open(newpath)
}

function extLink() {
	window.open(this.href);
	return false;
}