﻿// JScript File
function openNAICSWindow()
{
	window.open("NAICSCodes.aspx", "", "scrollbars=no, menubar=no, height=400, width=800, resizable=no, toolbar=no, location=no, status=no");
}	

function removeText(elementID)
{
	var text=document.getElementById(elementID);
	if (text.value=="enter NAICS code or description...")
		text.value="";
	text.className="normalTextbox";
}

function setLoginCursor(usernameID, passwordID)
{
	var username=document.getElementById(usernameID);
	var password=document.getElementById(passwordID);
	if (username.value.length>0)
		password.focus();
	else
		username.focus();
}
