// JavaScript Document
//Script to display css browser wise
if(navigator.appName == "Netscape"){
	document.write('<link rel="stylesheet" href="css/ns.css" type="text/css">');
	}
	else{
		document.write('<link rel="stylesheet" href="css/ie.css" type="text/css">');
		}