// JavaScript Document
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}

function MM_changeProp(objName,x,theProp,theValue) { //v6.0
  var obj = MM_findObj(objName);
  if (obj && (theProp.indexOf("style.")==-1 || obj.style)){
    if (theValue == true || theValue == false)
      eval("obj."+theProp+"="+theValue);
    else eval("obj."+theProp+"='"+theValue+"'");
  }
}

function getScreenWidth()
{
   return document.form.ScreenWidth.value = window.innerWidth;
}

function closeWindow()
{
   window.close();
}

function comparePWS(p1,p2) {
	var errors='';
	var pw1=MM_findObj(p1);
	var pw2=MM_findObj(p2);

if (pw1.value != pw2.value) {	
		errors += 'Your re-entered password does not match'; 
	}
	
	if (errors) alert(errors);
  	
	document.MM_returnValue = (errors == '');
}

function MM_validateForm() { //v4.0
  var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
  for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
    if (val) { nm=val.name; if ((val=val.value)!="") {
      if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
        if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
      } else if (test!='R') { num = parseFloat(val);
        if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
        if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
          min=test.substring(8,p); max=test.substring(p+1);
          if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
    } } } else if (test.charAt(0) == 'R') errors += 'Either an E#, Digital X-Press Job # or your PO# is required.\n A Due date is required.'; }
  } if (errors) alert(errors);
  document.MM_returnValue = (errors == '');
}

	var ie4 = false;
	if(document.all) {
    	ie4 = true;
	}

	function getObject(id) {
		if (ie4) {
			return document.all[id];
		} else {
			return document.getElementById(id);
		}
	}
                        
	function toggle(link, divId) {
		var lText = link.innerHTML;
		var d = getObject(divId);
			if (lText == '+') {
				link.innerHTML = '&ndash;';
				d.style.display = 'block';
			} else {
				link.innerHTML = '+';
				d.style.display = 'none';
			}
	}

function countdownRedirect(url, msg)
{
   var TARG_ID = "COUNTDOWN_REDIRECT";
   var DEF_MSG = "Redirecting...";
 
   if( ! msg )
   {
      msg = DEF_MSG;
   }
 
   if( ! url )
   {
      throw new Error('You didn\'t include the "url" parameter');
   }
 
   var e = document.getElementById(TARG_ID);
 
   if( ! e )
   {
      throw new Error('"COUNTDOWN_REDIRECT" element id not found');
   }
 
   var cTicks = parseInt(e.innerHTML);
 
   var timer = setInterval(function()
   {
      if( cTicks )
      {
         e.innerHTML = --cTicks;
      }
      else
      {
         clearInterval(timer);
         document.body.innerHTML = msg;
         location = url;
      }
 
   }, 1000);
}

function confirmation(where) {
	var answer = confirm("Are you sure you want to delete this?")
	if (answer){
		Thread.sleep(2000L);
		window.location = where;
	}
}

