location.href = "/soon.asp";
/*function checkBrowser(){
	this.ver=navigator.appVersion
	this.dom=document.getElementById?1:0
	this.ie5					=	(document.all && this.dom)?1:0;
	this.ns6					=	(!document.all && this.dom)?1:0;	
//	this.ie5					=	(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie4					=	(document.all && !this.dom)?1:0;
	this.ns5					=	(this.dom && parseInt(this.ver) >= 5) ?1:0;
	this.ns4					=	(document.layers && !this.dom)?1:0;
	this.bw						=	(this.ie5 || this.ie4 || this.ns4 || this.ns5 || this.ns6);
	this.ie						=	(this.ie4 || this.ie5);	
	this.ns						=	( this.ns4 || this.ns5 || this.ns6);
	this.height				=	screen.height;
	this.availheight	=	screen.availHeight;	
	this.width				=	screen.width;
	this.availwidth		=	screen.availWidth;
	return this
}

****************

		The code above is required by Chadwick, Saylor

***************

function inCell(cell, newcolor) {
	cell.bgColor = newcolor;
	if (!cell.contains(event.fromElement)) {
		cell.bgColor = newcolor;
	}
}

function outCell(cell, newcolor) {
cell.bgColor = newcolor;
	if (!cell.contains(event.toElement)) {
		cell.bgColor = newcolor;
	}
}

function setLocation(nav, main) {
			if (nav) {parent.main.location.href = main;}
			if (main) {parent.l_nav.location.href = nav;}
}

function loadLocation() {
	var i, args, docName, docFile;
  	args = loadLocation.arguments;			
	for (i=0; i<args.length; i+=2) {
		docName = loadLocation.arguments[i];
		docFile = loadLocation.arguments[i+1];
		theObj  = eval("parent." + docName);
		if (theObj) theObj.location.href = docFile;		
	}
}

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

function reDirect(s){
	var destination=s.options[s.selectedIndex].value
	if (destination !="") {parent.main.location=destination;}
}

function showHideLayers() {
  var i, visStr, args, theObj;
  args = showHideLayers.arguments;
  for (i=0; i<(args.length-1); i+=2) { //with arg doubles (layerName,visStr)

	 visStr   		= args[i+1];
	 layerName 	= args[i];

	 if (navigator.appName == 'Netscape' && document.layers != null) {
		theObj = eval(document.layers[layerName]);
		if (theObj) theObj.visibility = visStr;
	 } else if (document.all != null) { //IE
		if (visStr == 'show') visStr = 'visible'; //convert vals
		if (visStr == 'hide') visStr = 'hidden';
		theObj = eval(document.all[layerName]);	
		if (theObj) theObj.style.visibility = visStr;
  } }
}

function closeLayers() {
	var i, args, layer;
  	args = closeLayers.arguments;	
	for (i=0; i<(args.length); i+=1) {
	 if (navigator.appName == 'Netscape' && document.layers != null) {
	 	layer 	= "document.layers['" + args[i] + "']";
		theObj 	= eval(layer);
		if (theObj) theObj.visibility = 'hide';
	 } else if (document.all != null) { //IE
	 	layer    = "document.all['" + args[i] + "']";
		theObj 	= eval(layer);
		if (theObj) theObj.style.visibility = 'hidden';
		 } 
    }
}



function goToURL() { //v3.0
  var i, args=goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function today() {
	today 	=	new Date();
	day 		= today.getDate();
	month = today.getMonth();
	year		= today.getFullYear();

	switch (month) {
		case 0: month="January"; break;
		case 1: month="February"; break;
		case 2: month="March"; break;
		case 3: month="April"; break;
		case 4: month="May"; break;			
		case 5: month="June"; break;
		case 6: month="July"; break;
		case 7: month="August"; break;
		case 8: month="September"; break;
		case 9: month="October"; break;
		case 10: month="November"; break;
		case 11: month="December"; break;}
		
		return (month + " " + day + ", " + year);
}

function reloadPage(init) {  //reloads the window if Nav4 resized
	if (init==true)
	{
		if (bw.ns) {
			document.pgW	=	window.innerWidth; 
			document.pgH	=	window.innerHeight;
		} else {
			document.pgW	=	document.body.offsetWidth; 
			document.pgH	=	document.body.offsetHeight;
		}
		init = false;	
	}
	else {
		if (bw.ns) {
			innerWidth	=	window.innerWidth; 
			innerHeight	=	window.innerHeight;
		} else {
			innerWidth	=	document.body.offsetWidth; 
			innerHeight	=	document.body.offsetHeight;
		}

		if (innerWidth != document.pgW || innerHeight != document.pgH) {
			location.reload();
			parent.scroller.location.reload();	// reload the scroller as well
		}
	}
}	



function openBrWindow(theURL,winName,features) { //v2.0
		  window.open(theURL,winName,features);
		}



function callJS(jsStr) { //v2.0
 	 		return eval(jsStr)
 	 	}
*/
