var IS_NN = (document.all) ? false : true;
var IS_IE = !IS_NN;

function showSearchSplash() {
	if (IS_IE) {
		searchSplash.style.posTop = document.body.scrollTop + document.body.clientHeight / 2 - 350 / 2;
		searchSplash.style.posLeft = document.body.scrollLeft + document.body.clientWidth / 2 - 350 / 2;
		searchSplash.style.display = "block";  
		return;
	}
	/*
	if (IS_NN) {
		document.searchSplash.top = 180;
		document.searchSplash.left = 180;
		document.searchSplash.width = 349;
		document.searchSplash.height = 250;
		document.searchSplash.zIndex = 3;
		document.searchSplash.visibility = "show";
	}
	*/
}

var splashHTML = "";
if (IS_IE) {
	splashHTML = "<div id=\"searchSplash\" style=\"position: absolute; display: none; z-index: 3;\"><iframe src=\"/searchsplash.asp\" scrolling=\"No\"  frameborder=\"0\" width=\"250\" height=\"150\"></iframe></div>";
} else if (IS_NN) {
	splashHTML = "<layer bgcolor=\"white\" id=\"searchSplash\" src=\"/searchsplash.asp\" z-index=\"5\" left=\"0\" top=\"0\" width=\"0\" height=\"0\" visibility=\"hide\"> </layer>";
}
document.writeln(splashHTML);

