<!--
var windowCount = 1;

function showModal(msg) {
	alert(msg);
}

function closeFrame() {
	self.close();
}

function changePage() {
	if (self.parent.frames.length != 0)
		self.parent.location = document.location;
}

function gonext(thePage) {
	i = window.opener;	
	if (i == null) {
		document.location = thePage;
	}
	else {
		opener.location = thePage;
	    self.close();
	}
}

function changeHREF(theAnchor, theLink, theWidth, theHeight) {
	theAnchor.href = theLink;
}

function openFRAME(theAnchor, theFile, aWidth, aHeight) {
	var windowName = 'Window'+windowCount;
	var theLink = 'JavaScript:openNewWindow(\''+theFile+'\',\''+windowName+'\','+aWidth+','+aHeight+')';
	theAnchor.href = theLink;
	theAnchor.target = "";
}

function openNewWindow(fileName,windowName,theWidth,theHeight) {
	window.open(fileName,windowName,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+theWidth+",height="+theHeight);
	windowCount++;
}

function changePRINT(theAnchor, theFile, aWidth, aHeight) {
	var windowName = 'Window'+windowCount;
	var theLink = 'JavaScript:openPRINTWindow(\''+theFile+'\',\''+windowName+'\','+aWidth+','+aHeight+')';
	theAnchor.href = theLink;
	theAnchor.target = "";
}

function openPRINTWindow(fileName,windowName,theWidth,theHeight) {
	window.open(fileName,windowName,"toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width="+theWidth+",height="+theHeight);
	windowCount++;
}

version = "0";
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
has_loaded=0;
var status1 = "Home";
var status2 = "Products";
var status3 = "Contracts";
var status4 = "Services";
var status5 = "Contact Us";
var status6 = "Privacy";
var status7 = "Tech Support";
var status8 = "Shopping Cart";
var status9 = "Vendor Links";
var status10 = "LANL HP JIT";
var status11 = "FAQs";
var status12 = "Feedback";
var status13 = "Return Policy";
var status14 = "GSA Schedule 70";
var status15 = "LANL MathWorks Contract";

function loadimage()
{
if (browserName == "Netscape" && browserVer >= 3) version = "n3";
if (browserName == "Microsoft Internet Explorer" && browserVer >= 3) version = "n3";
if (version == "n3")
  {
 overImage1 = new Image();
 overImage1.src = "images/bullet_dark.gif";
 
 outImage1 = new Image();
 outImage1.src = "images/spacer.gif";

 has_loaded=1;
  }
}

function mouse_over(imageNum) {
{
	var iNum;
	var i;
	var name;
	var iname;
	name = "status"+imageNum;
	window.status = eval(name);
	if (version != "n3")
	  return true;
	iNum = parseInt(imageNum);
	name = "image"+iNum;
	iname = "overImage1.src";
	document[name].src = eval(iname);  
}
  return true;
}

function mouse_out(imageNum) {
if (has_loaded==1)
{
	var iNum;
	var i;
	var name;
	var iname;
	window.status = " ";
	if (version != "n3")
	  return true;
	iNum = parseInt(imageNum);
	name = "image"+iNum;
	iname = "outImage1.src";
	document[name].src = eval(iname);  
}
  return true;
}

var HelpWindow=null;
function Help(mypage,myname,w,h,pos,infocus){
LeftPosition=(screen.width)?(screen.width-w)/2:100;
TopPosition=(screen.height)?(screen.height-h)/2:100;
settings='width='+ w + ',height='+ h + ',top=' + TopPosition + ',left=' + LeftPosition + ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=no,dependent=no';
HelpWindow=window.open(mypage,myname,settings);
HelpWindow.focus();
HelpWindow.location=mypage;
}