
Shadowbox.init({
players:    ["html","iframe"],
enableKeys:false
});

function doSearch() {

    // open a welcome message as soon as the window loads
    Shadowbox.open({
        content:    '<div id="searchbox"><br /><form action="/search.html" method="post"><img src="/_imgs/enter-search-term.gif" width="276" height="19" /><br /><table align="center" width="100" border="0" cellspacing="3" cellpadding="3"><tr><td><input name="term" type="text" style="width:210px;height:26px;border:1px solid #d3d3d3;font-size:18px;color:#999999" /></td><td><input name="" type="image" src="/_imgs/search-button.gif" /></td></tr></table></form></div>',
        player:     "html",
        height:     200,
        width:      400
    });

};


function doSubscribe() {

    // open a welcome message as soon as the window loads
    Shadowbox.open({
		player:     "iframe",
		content : "/mailing-list.html",
        height:     200,
        width:      400
    });

};

