// JavaScript Document


var newwindow;
function poptastic(url, sWidth, sHeight)
{
	if (sWidth==null){
		sWidth=500;
		sHeight=500;
	}
	
	newwindow=window.open(url,'name','height='+sHeight+',width='+sWidth+',resizable=no,scrollbars=no,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}
}



function showhide(whichEl, whichImg){
	show = new Image();
	hide = new Image();
	
	show.src = "webskins/default/images/GeneralImages/tea_bag_wee_home.gif";
	hide.src = "webskins/default/images/GeneralImages/tea_bag_wee_home.gif";

	el = document.getElementById(whichEl);
	im = document.getElementById(whichImg);
	
	if (el.style.display=='none'){
		el.style.display='';
		im.src=hide.src
	} else {
		el.style.display='none'
		im.src=show.src
	}
}


