function visitSite(the_site)
{
window.location = the_site;
}

function newWindow(shippage) {
shipWindow = window.open(shippage, "shipWin", "width=410, height=520")
shipWindow.focus()
}


adImagesdb = new Array("http://www.delightfulbiteful.com/images/ChocolateHeart.gif","http://www.delightfulbiteful.com/images/Confections.jpg", "http://www.delightfulbiteful.com/images/Chocolates.jpg", "http://www.delightfulbiteful.com/images/ChocolateApple.jpg")

thisAd = 0
imgCt = adImagesdb.length

function rotate() {
if (document.images) {
thisAd++
if (thisAd == imgCt) {
thisAd = 0

}

document.adBannerOne.src=adImagesdb
[thisAd]

setTimeout("rotate()", 4 * 1700)
}

}




function RemoveBad(InStr){
    InStr = InStr.replace(/\</g,"");
    InStr = InStr.replace(/\>/g,"");
    InStr = InStr.replace(/\"/g,"");
    InStr = InStr.replace(/\'/g,"");
    InStr = InStr.replace(/\%/g,"");
    InStr = InStr.replace(/\;/g,"");
    InStr = InStr.replace(/\(/g,"");
    InStr = InStr.replace(/\)/g,"");
    InStr = InStr.replace(/\&/g,"");
    InStr = InStr.replace(/\+/g,"");
    return InStr;
}



