function popIt(width, height, scrollbars){ 
	if(!width) width = "640";
	if(!height) height = "480";
	if(!scrollbars) scrollbars = 1;
	var windowString = 'width=' + width + ',height=' + height + ',resizable=1,status=0,toolbar=no,scrollbars=' + scrollbars + ',scrolling=auto';
	var popItWindow = window.open('',"popIt", windowString);
	return false;
}

function addBookmark(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);
}


function resetFooterDisplay(){
	document.getElementById('custServ').className = 'footerTabContentOff';
	document.getElementById('shoppingDir').className = 'footerTabContentOff';
	document.getElementById('brandsDir').className = 'footerTabContentOff';
	document.images['custServImg'].src = 'http://site.shopthehaven.com/templateImages/footerCustServOff.gif';
	document.images['shoppingDirImg'].src = 'http://site.shopthehaven.com/templateImages/footerShoppingOff.gif';
	document.images['brandsDirImg'].src = 'http://site.shopthehaven.com/templateImages/footerBrandsOff.gif';
	document.images['fBar1'].src = 'http://site.shopthehaven.com/templateImages/footerOffBar.gif';
	document.images['fBar2'].src = 'http://site.shopthehaven.com/templateImages/footerOffBar.gif';
	document.images['fBar3'].src = 'http://site.shopthehaven.com/templateImages/footerOffBar.gif';
	document.images['fBar4'].src = 'http://site.shopthehaven.com/templateImages/footerOffBar.gif';
}


function switchFooterContent(which){
switch(which){
	case 'custServ':
	resetFooterDisplay();
	document.images['custServImg'].src = 'http://site.shopthehaven.com/templateImages/footerCustServOn.gif';
	document.images['fBar1'].src = 'http://site.shopthehaven.com/templateImages/footerOnBar.gif';
	document.getElementById('custServ').className = "footerTabContentOn";
	break
	case 'shoppingDir':
	resetFooterDisplay();
	document.images['shoppingDirImg'].src = 'http://site.shopthehaven.com/templateImages/footerShoppingOn.gif';
	document.images['fBar1'].src = 'http://site.shopthehaven.com/templateImages/footerOnBarL.gif';
	document.images['fBar2'].src = 'http://site.shopthehaven.com/templateImages/footerOnBar.gif';
	document.getElementById('shoppingDir').className = "footerTabContentOn";
	break
	case 'brandsDir':
	resetFooterDisplay();
	document.images['brandsDirImg'].src = 'http://site.shopthehaven.com/templateImages/footerBrandsOn.gif';
	document.images['fBar2'].src = 'http://site.shopthehaven.com/templateImages/footerOnBarL.gif';
	document.images['fBar3'].src = 'http://site.shopthehaven.com/templateImages/footerOnBar.gif';
	document.getElementById('brandsDir').className = "footerTabContentOn";
	break
	}
	
}