
/*
 +---------------------------------------------------------+
 | Ad Simple                 Copyright www.YugDesign.com   |
 +---------------------------------------------------------+
 | This program may be used and hosted free of charge by   |
 |anyone for personal purpose as long as this copyright    |
 |notice remains intact.                                   |
 +---------------------------------------------------------+
*/

var img_width = "150";
var img_height = "300";
var img_title = "Click to See More";


var ad=new Array()
//insert here your images src
ad[0]='http://jrtrealestate.com/gacondos/img/paramount/paramount.jpg';
ad[1]='http://jrtrealestate.com/gacondos/img/element/element_marquee.jpg';

var links=new Array()
//insert here your links
links[0]='http://jrtrealestate.com/gacondos/paramount_feature.html';
links[1]='http://jrtrealestate.com/gacondos/gacondofeature.html';


var xy=Math.floor(Math.random()*ad.length);
document.write('<a href="'+links[xy]+'" target="_blank"><img src="'+ad[xy]+'" width="'+img_width+'" height="'+img_height+'" alt="'+img_title+'"></a>');

