// JavaScript Document

/*
Select and Copy form element script- By Dynamicdrive.com
For full source, Terms of service, and 100s DTHML scripts
Visit http://www.dynamicdrive.com
*/

//specify whether contents should be auto copied to clipboard (memory)
//Applies only to IE 4+
//0=no, 1=yes
var agt=navigator.userAgent.toLowerCase();
var avt = navigator.appVersion.toLowerCase();
var ant = navigator.appName.toLowerCase();
var is_N4 = (ant.indexOf("netscape")!=-1) && (avt.charAt(0) <= 4);
var is_IE3 = (avt.indexOf("msie")!=-1) && (avt.charAt(0) < 4);
if (navigator.userAgent.indexOf('Opera')!= -1 ){location.href = 'noSupport.htm';}
else if(is_N4){location.href = 'noSupportNS.htm';}
else if(is_IE3){location.href = 'noSupport.htm';}