if (screen.width < 1024) 
{
	if (navigator.appName == "Netscape")
		document.write('<LINK REL=stylesheet TYPE="text/css" HREF="styles/slfc/low/ns/general.css">');
	else
		document.write('<LINK REL=stylesheet TYPE="text/css" HREF="styles/slfc/low/ie/general.css">');
}
if (screen.width >= 1024)
{
	if (navigator.appName == "Netscape")
		document.write('<LINK REL=stylesheet TYPE="text/css" HREF="styles/slfc/high/ns/general.css">');
	else
		document.write('<LINK REL=stylesheet TYPE="text/css" HREF="styles/slfc/high/ie/general.css">');
}


function RefreshFrame(thePage)
{
	if (navigator.appName == "Netscape")
	{
		//parent.SLFCMAIN.location.href = thePage;
	}
	else	
	{
    		for(i=0;i<document.all.length;i++)
		{
        		if(document.all(i).tagName=="IFRAME")
        		{
            			document.all(i).contentWindow.location = thePage;
        		}
    		}
	}
}