<!-- Hide from older Browsers


// Start of variable declarations
var how_many_ads = 7;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1; 

// Start of Banner Scripts Collection
if (ad==1) {
txt=""; 
url="../for_sale/for_sale.html";
alt="Francis Manapul Art For Sale";
banner="../images/banner_1.gif";
}

if (ad==2) {
txt=""; 
url="../for_sale/for_sale.html";
alt="Original Comic Art For Sale";
banner="../images/banner_11.gif";
}

if (ad==3) {
txt=""; 
url="../for_sale/for_sale.html";
alt="Francis Manapul Art For Sale";
banner="../images/banner_3.gif";
}

if (ad==4) {
txt=""; 
url="../for_sale/for_sale.html";
alt="Francis Manapul Art For Sale";
banner="../images/banner_2.gif";
}

if (ad==5) {
txt=""; 
url="../for_sale/for_sale.html";
alt="Kalman Andrasofszky Art For Sale";
banner="../images/banner_12.gif";
}

if (ad==6) {
txt=""; 
url="../for_sale/for_sale.html";
alt="Devil's Due Art For Sale";
banner="../images/banner_13.gif";
}

if (ad==7) {
txt=""; 
url="../for_sale/for_sale.html";
alt="Devil's Due Art For Sale";
banner="../images/banner_14.gif";
}
//end of BannerScripts collection

// Send banner selection to the screen
document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_blank\">');
document.write('<img src=\"' + banner + '\" width=450 height=50 ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<font size="2">' + txt + '</font></a>');
document.write('</center>');

// End -->

