function showObjs() {
	document.getElementById('tape_gun').style.visibility = "visible";
	document.getElementById('top_heading').style.visibility = "visible";
	document.getElementById('hidehead').style.visibility = "visible";
}

function starttimer(endpos){
	fnEndPos = parseInt(endpos);
	document.getElementById('tape_gun').style.left = i +"px";
	if (i >= headPos) {
		document.getElementById('hidehead').style.left = i + "px";
	}
	i=i +24


	if ( i >= 630 ) {
		finish();
	} else {
		timer=setTimeout("starttimer()",36);
	}
}



function finish() {
	clearTimeout(timer);
	//document.getElementById('tape_gun').style.visibility = "hidden";
	//document.getElementById('tape_gun').style.left = 205 + "px";
	//setTimeout("document.getElementById('tape_gun').style.visibility = 'visible'", 500);
}

function letsGo() {
	 wait = setTimeout("showObjs();starttimer('630')",500);
}

function rollOver(ident, im) {
	document.getElementById(ident).src = "images/" + im + "_over.gif";
}

function rollOut(ident, im) {
	document.getElementById(ident).src = "images/" + im + ".gif";
}

function callBack() {
	theURL = "../callback.asp";
	newwindow=window.open(theURL,'name','height=200,width=270,top=15,left=15,resizable=yes');
}
