<!--
	//PRELOAD PLACE HOLDER IMAGES
	//often the spot of ssl errors changed to this path by dms 6/22/04
	var pth = "../images/";
	var myimages = new Array()
	function preloadimages() {
	for (i=0;i<preloadimages.arguments.length;i++) {
	myimages[i] = new Image()
	myimages[i].src =  pth + preloadimages.arguments[i]
	}
}
preloadimages("pic_trans.gif")
//-->
<!--
	//RELOAD WINDOW IF NAV4 RESIZED
	function MM_reloadPage(init) {  
	if (init==true) with (navigator) {
		if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
		document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage;
		}
	}
	else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
<!-- 
	//ALTERNATE IMAGES
	function getBrowser() {
	browser = navigator.appName;
	version = navigator.appVersion;
	accept = version.substring(0, 1); 
	if ( (browser == "Netscape") && ( accept >= 3 ) ) return 1;
	if ( (browser == "Microsoft Internet Explorer") && ( accept >= 4) ) return 1;
	return 0;
}
	function switchGraphic(num, name) {
	if (getBrowser())
	{
	document.images[name].src = img[num].src;}
}		
	pic = new Array();
        pic[0] = "images/pic_ecom_1.gif"; 
        pic[1] = "images/pic_ecom_2.gif"; 
	pic[2] = "images/pic_web_1.gif";
	pic[3] = "images/pic_web_2.gif";
	pic[4] = "images/pic_tech_1.gif";
	pic[5] = "images/pic_tech_2.gif";
	pic[6] = "images/pic_dev_1.gif";
	pic[7] = "images/pic_dev_2.gif";
	pic[8] = "../images/pic_login_1.gif";
	pic[9] = "../images/pic_login_2.gif";
	pic[10] = "../images/pic_mail_1.gif";
	pic[11] = "../images/pic_mail_2.gif";
	pic[12] = "images/pic_login_1d.gif";
	pic[13] = "images/pic_login_2d.gif";
		
	if (getBrowser())
	{
	img = new Array();
	for (i = 0; i < pic.length; i++)
	{
	img[i] = new Image();
	img[i].src = pic[i];
	}
}                          
// -->
<!--
	//LOGIN - VALIDATE LOGIN FORM FIELDS
	function ValLogIn() {
	var username = document.FormLogIn.UserName.value;
	var password = document.FormLogIn.Password.value;
	var surl = 'scripts/sign_in.asp?UserName=' + username
	+ '&Password=' + password;
	if (username == "") 
	{
	alert ("Please enter a value for the \"User Name\" field.");
	document.FormLogIn.UserName.focus();
	return (false);
	}
	if (password == "")
	{
	alert("Please enter a value for the \"Password\" field.");
	document.FormLogIn.Password.focus();
	return (false);
	}
	location.href = surl;
	return (true);
}
//-->
<!-- // load htmlarea
_editor_url = "htmlarea/" ;                     // URL to htmlarea files
var win_ie_ver = parseFloat(navigator.appVersion.split("MSIE")[1]);
if (navigator.userAgent.indexOf('Mac')        >= 0) { win_ie_ver = 0; }
if (navigator.userAgent.indexOf('Windows CE') >= 0) { win_ie_ver = 0; }
if (navigator.userAgent.indexOf('Opera')      >= 0) { win_ie_ver = 0; }
if (win_ie_ver >= 5.5) {
 document.write('<scr' + 'ipt src="' +_editor_url+ 'editor.js"');
 document.write(' language="Javascript1.2"></scr' + 'ipt>');  
} else { document.write('<scr'+'ipt>function editor_generate() { return false; }</scr'+'ipt>'); }
// -->
<!-- // open new window
function openNewWindow(URLtoOpen, windowName, windowFeatures) { newWindow=window.open(URLtoOpen, windowName, windowFeatures); }//End function

var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);
if(win.focus){win.focus();}}
// -->
<!--
	//CONFIRM DELETE Record
	function DelConf(newlocation)  {
	if (confirm('Are you sure you want to delete this record?') == true)
	{
	window.location = newlocation;
	}
}
//-->
<!--
	//CONFIRM DELETE image or document
	function DelConf2(newlocation2)  {
	if (confirm('Are you sure you want to delete this image or document?') == true)
	{
	window.location = newlocation2;
	}
}
//-->