function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function openCentredWindow(url, name, width, height) {
    var configString = 'width=' + width + ',height=' + height + ',status=1,scrollbars=1';
    newWindow = window.open(url, name, config=configString);
    if (parseInt(navigator.appVersion) >= 4) {
        var screenWidth = screen.width;
        var screenHeight = screen.height;
        var x = (screenWidth - width) / 2;
        var y = (screenHeight - height) / 2;
        newWindow.moveTo(x,y);
    }
}

function doButtons(picimage,html) {
document['picture'].src=picimage;
}


function includeemailATC()
{
var f = document.ATCForm;
var name = "juniorbaby.paypal.payments";
var at = "@";
var url = "juniorbaby.com";
f.business.value = name + at + url;
return true;
}

function includeemailVC()
{
var f = document.VCForm;
var name = "juniorbaby.paypal.payments";
var at = "@";
var url = "juniorbaby.com";
f.business.value = name + at + url;
return true;
}

function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}