var browName = navigator.appName;
var browVer = "";
var isIE = "";
var isFF = "";

    if(browName=="Microsoft Internet Explorer")
		{
        browVer = navigator.appVersion.charAt(22)
        	if((browVer == "5")||(browVer == "6")||(browVer == "7")||(browVer == "8"))
			{
        	isIE = true;
			isFF = false;
			browVer = 5;
    		}	
		}

    else if(browName=="Netscape")
		{ 
		agent = navigator.userAgent
		count1 = agent.length
		count2 = agent.substr(count1-34,7)
		if(count2 == "Firefox")
			{
        	isFF = true;
			isIE = false;
			browName = "Firefox"
				version = navigator.userAgent
				verNum_1 = version.length
				verNum_2 = version.substr(verNum_1-10,1)
				if(verNum_2 == 3)
					{
						browVer = 3;
					}
				else
					{
						browVer = 2;
					}
				
    		}
		 }

function setStyle(){

	var w=screen.width;

		if(isIE)
			{

				document.write("<link rel='stylesheet' type='text/css' href='./common/vss_ie.css'>");
			}

		else if(isFF)
			{

				document.write("<link rel='stylesheet' type='text/css' href='./common/vss_ff.css'>");
			}
		
		else
			{
				document.write("<link rel='stylesheet' type='text/css' href='./common/vss_ff.css'>"); 
			}
}

setStyle();


