
var shIndex1 = 1;
var shIndex2 = 1;
var pdIndex = 0;  /* Important initialization */

function chgBul(imgNo)
{
	var mSrc;
	mSrc="bullets/bulh3.gif";
		eval("document.client"+imgNo+".src='"+mSrc+"'");
}

function resBul(imgNo)
{
	var mSrc;
	mSrc="bullets/bulh1.gif";
		eval("document.client"+imgNo+".src='"+mSrc+"'");
}

function showBaby(tipNo)
{
	shIndex1 = (shIndex1==0)?1:0;
	shIndex2 = (shIndex2==0)?1:0;
	if (shIndex1==0 || shIndex2==0){
		eval("document.all.Tip"+tipNo+".style.display=''");
	}
	else{
		eval("document.all.Tip"+tipNo+".style.display='none'");
	}
}

function goNext(tipNo)
{
	eval("document.all.Tip"+shIndex1+".style.display='none'");
	eval("document.all.Tip"+tipNo+".style.display=''");
	shIndex1=tipNo;
}

function shPullDown(this1)
{
	pdIndex = (pdIndex==0)?1:0;
	if (pdIndex==0){
		eval("document.all.pulldown1.style.display=''");
		this1.src="arrows/up.gif";
	}
	else{
		eval("document.all.pulldown1.style.display='none'");
		this1.src="arrows/down.gif";
	}
	eval("document.all.Tip"+shIndex1+".style.display='none'");
}
			
function hiLight(this1){
	if(pdIndex==0) this1.src="arrows/hup.gif";
	else this1.src="arrows/hdown.gif";
}
	
function disLight(this1){
	if(pdIndex==0) this1.src="arrows/up.gif";
	else this1.src="arrows/down.gif";
}
