/*
  * @ (#) detectNonIEBrowser.js 1.0 09/07/2004
  * Copyright (c) 2004-2005 KESDEE Systems(India) PVT. LTD.
  * # 6, 3rd floor,Esteem Regency, Richmond road, Bangalore, India
  * All rights reserved.
  *
  * This software is the confidential and proprietary information of KESDEE Systems(India) PVT. LTD. ("Confidential Information"). 
  * You shall not disclose such Confidential Information and shall use it only in
  * accordance with the terms of the license agreement you entered into
  * with KESDEE.
  */
  
 /*
  * @author Yogananda .T
  * @Version: 1.0 09/07/2004
  * Decription: -  This script is used to detect jre for non IE Browsers.
  * 			   
  */
var _info = navigator.appName; 	
	if (_info.indexOf("Microsoft") == -1) {
			//embed tag for Netscape browser
			document.writeln('<EMBED type="application/x-java-applet;version=1.3.1_08" width="1"');
			document.writeln('height="1" code="DetectPluginApplet.class"');
			document.writeln('codebase="http://ws54:8080/ksdlms/"');
			document.writeln('pluginspage="http://java.sun.com/products/archive/j2se/1.3.1_08/index.html" NAME="myApplet">');
			document.writeln('<NOEMBED>');
			document.writeln('</COMMENT>');
			document.writeln('No JDK 1.2 support for APPLET!!');
			document.writeln('</NOEMBED>');
			document.writeln('</EMBED>');
			doNetscape(document.loginform);			
		}
