
//Set Variables
var tabShow=0;
var x = 0
var t = 0
var point = "0"
var count = "0"

ns4 = ( document.layers )? true:false
ie4 = ( document.all ) ? true:false

var aImg = new Array('/images/introMouseOver.gif', '/images/ldrMouseOver.gif', '/images/bkrMouseOver.gif');
var imgSrc = new Image();

function OpenWindow( URL ) {
    winLoc = URL;
    mWin = window.open(winLoc,"details","width=670,height=420,top=100,left=100,scrollbars,menubar,resizable,toolbar");
    mWin.focus();
}

//Hide-Show Layer
function hidepoptext( id, type ) 
{
	if( tabShow == type ) 
	{
		if(ns4) { id.visibility = "hide"; }
		if(ie4) { id.style.visibility = "hidden"; }
		tabShow = 0
		return;
	}

	if( tabShow == 0 ) 
	{
		if(ns4) { id.visibility = "show"; }
		if(ie4) { id.style.visibility = "visible"; }
		tabShow = type
	}
}

function quickImgFlip( imgSrc, imgNo )
{
	if( imgNo == "on")
		imgSrc.src = "images/redArrow_on.gif"
	if( imgNo == "off" )
		imgSrc.src = "images/redArrow_off.gif"
}

function initPage() {
	document.main.search.focus();
	}
	
	