<!-- BROWSER REDIRECT START -->
<!--
/* 
Browser sniffer. Written by PerlScriptsJavaScripts.com
Copyright http://www.perlscriptsjavascripts.com 
Free and commercial Perl and JavaScripts     
*/

<!-- FIND THE BROWSER TYPE -->

v3 = 0; op = 0; ie4  = 0; ie5 = 0; nn4 = 0; nn6 = 0; isMac = 0; aol = 0;

if(document.images){
    if(navigator.userAgent.indexOf("Opera") != -1){
        op = 1;
    } else {
        if(navigator.userAgent.indexOf("AOL") != -1){
            aol = 1;
        } else {
            ie4 = (document.all && !document.getElementById);
            nn4 = (document.layers);
            ie5 = (document.all && document.getElementById);
            nn6 = (document.addEventListener);
        }
    }
} else {
    v3 = 1;	
}

if(navigator.userAgent.indexOf("Mac") != -1){
    isMac = 1;
}

<!-- DEPENDING ON BROWSER TYPE REDIRECT ACCORDINGLY -->

if(op){ // If Opera do this
    //alert("You are using Opera");
} 
if(ie4){ // If IE4 do this
    //alert("You are using Internet Explorer 4");
} 
if(ie5){ // If IE5+ do this
    //alert("You are using Internet Explorer 5 or higher");
} 
if(nn4){ // If Netscape 4 do this
    popUp('/browserUpdate.htm','browserUpdate','no','414','182')
} 
if(nn6){ // If Netscape 6 do this
    //alert("You are using Netscape 6");
} 
if(aol){ // If AOL do this
    //alert("You are using an AOL browser");
}
if(v3){ // If pre version 4 browser do this
    popUp('/browserUpdate.htm','browserUpdate','no','414','182')
}

<!-- BROWSER REDIRECT END -->

//version=parseInt(navigator.appVersion);
	//if (navigator.appVersion.indexOf('5.')>-1){version=5};
	//if (navigator.appVersion.indexOf('6.')>-1){version=6}; 
	//if (navigator.appVersion.indexOf('7.')>-1){version=7}; browser='OTHER'; 
	//if (navigator.appName=='Netscape'){browser='NS'+version;} 
	//if (navigator.appName=='Microsoft Internet Explorer'){browser='MSIE'+version;} 
	//if (navigator.appVersion.indexOf('MSIE 3')>0) {browser='MSIE3';} 
	//if (browser == 'NS5'){browser='NS6'};
	//if (browser=='NS3') {window.location='/browserUpdate.htm'}
	//if (browser=='NS4') {window.location='/browserUpdate.htm'}
	//if (browser=='OTHER') {window.location='/browserUpdate.htm'}

	
<!-- LINK OUTLINE REMOVAL SCRIPT START -->
function unblur() {
     this.blur();
}

function getLinksToBlur() {
     if (!document.getElementById) return
     links = document.getElementsByTagName("a");
     for(i=0; i<links.length; i++) {
          links[i].onfocus = unblur
     }
} 

window.onload = getLinksToBlur;
<!-- LINK OUTLINE REMOVAL SCRIPT END -->

<!-- ROLLOVER SCRIPT START -->
if (document.images) {
  image1on = new Image();
  image1on.src = "images/nav1RO.gif";

  image2on = new Image();
  image2on.src = "images/nav2RO.gif";

  image3on = new Image();
  image3on.src = "images/nav3RO.gif";
  
  image4on = new Image();
  image4on.src = "images/nav4RO.gif";  
  
  
  image5on = new Image();
  image5on.src = "images/useExplain1RO.gif";   
  
  image6on = new Image();
  image6on.src = "images/useExplain2RO.gif";     
  
  image7on = new Image();
  image7on.src = "images/useExplain3RO.gif";  
  
  image8on = new Image();
  image8on.src = "images/useExplain4RO.gif";   

  image9on = new Image();
  image9on.src = "images/useExplain5RO.gif";  
  
  image10on = new Image();
  image10on.src = "images/useExplain6RO.gif";   
  
  
  image11on = new Image();
  image11on.src = "images/contactUsButtonRO.gif";    
  

  image1off = new Image();
  image1off.src = "images/nav1.gif";

  image2off = new Image();
  image2off.src = "images/nav2.gif";

  image3off = new Image();
  image3off.src = "images/nav3.gif";
  
  image4off = new Image();
  image4off.src = "images/nav4.gif";  
  

  image11off = new Image();
  image11off.src = "images/contactUsButton.gif";    
  
  
  useExplainoff = new Image();
  useExplainoff.src = "images/onepixel.gif";       
            

  pointDotsoff = new Image();
  pointDotsoff.src = "images/onepixel.gif";

  pointDotson = new Image();
  pointDotson.src = "images/pointDots.gif";
         

}

function changeImages() {
     if (document.images) {
          for (var i=0; i<changeImages.arguments.length; i+=2) {
               document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
          }
     }
} 

<!-- ROLLOVER SCRIPT END -->

<!-- EMAIL VALIDATION SCRIPT START -->
/**
 * DHTML email validation script. Courtesy of SmartWebby.com (http://www.smartwebby.com/dhtml/)
 */

function echeck(str) {

		var at="@"
		var dot="."
		var lat=str.indexOf(at)
		var lstr=str.length
		var ldot=str.indexOf(dot)
		if (str.indexOf(at)==-1){
		   alert("You must enter a valid email address to join our mailing list.")
		   return false
		}

		if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
		   alert("You must enter a valid email address to join our mailing list.")
		   return false
		}

		if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
		    alert("You must enter a valid email address to join our mailing list.")
		    return false
		}

		 if (str.indexOf(at,(lat+1))!=-1){
		    alert("You must enter a valid email address to join our mailing list.")
		    return false
		 }

		 if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
		    alert("You must enter a valid email address to join our mailing list.")
		    return false
		 }

		 if (str.indexOf(dot,(lat+2))==-1){
		    alert("You must enter a valid email address to join our mailing list.")
		    return false
		 }
		
		 if (str.indexOf(" ")!=-1){
		    alert("You must enter a valid email address to join our mailing list.")
		    return false
		 }

 		 return true					
	}

function validateForm(){
	var emailID=document.emailList.email
	
	if ((emailID.value==null)||(emailID.value=="")){
		alert("Please Enter your Email Address")
		emailID.focus()
		return false
	}
	if (echeck(emailID.value)==false){
		emailID.value=""
		emailID.focus()
		return false
	}
	
	return true
 }

<!-- EMAIL VALIDATION SCRIPT END --> 