//
defaultStatus="NExTT Solutions LLC -  Software Solutions for the Athletic Industry";
//
if(navigator.appName.indexOf("Explorer")!=-1) {
	//alert("IE");
}
else {
	document.write("<link href=scripts/style_alt.css rel=stylesheet type=text/css />");
}



//if NS 6
//if (browser_type=="Netscape"&&browser_version==4)
//window.location.replace("pages/NETSCAPE4.htm")
//
function openWin(url) {
  popupWin = window.open(url, 'demo', 'status=yes,resizable=yes,scrollbars=yes,toolbar=no,top=180,left=75,width=526,height=425');
}

function show (id) {  	//show
   document.getElementById(id).style.display = "block"
}
function hide (id) {  	//hide
   document.getElementById(id).style.display = "none"
}
function swap (id) {  	//swap
 if (document.getElementById(id).style.display != "block")
   document.getElementById(id).style.display = "block"
 else 
   document.getElementById(id).style.display = "none"
}
function reveal(id) {
   document.getElementById(id).filters.revealTrans.Apply();
   document.getElementById(id).style.visibility = "visible";   
   document.getElementById(id).filters.revealTrans.Play();;
}
//
function sc_Articles() {
	hide('default');
	hide('news')
	hide('customers')
	hide('products');
	show('articles');
}
function sc_Products() {
	hide('default');
//	hide('articles')
//	hide('customers')
//	hide('news');
	show('products');
}
function sc_News() {
	hide('default');
	hide('articles')
	hide('customers')
	hide('products');
	show('news');
}
function sc_Customers() {
	hide('default');
	hide('news')
	hide('articles')
	hide('products');
	show('customers');
}
