<!--

bName = navigator.appName;

bVer = parseInt(navigator.appVersion);

function isE3(){

if (bName == "Microsoft Internet Explorer" && bVer<=3 && navigator.appVersion.indexOf("Win") != -1)

return true;

else return false;

}

function isE5MC(){

if (navigator.appVersion.indexOf("MSIE 5.0; Macintosh; I; PPC") != -1)

return true;

else return false;

}

function isPC(){

if (navigator.appVersion.indexOf("Win") != -1) 

return true; 

else return false;}

function isNMC(){

if (bName == "Netscape" && navigator.appVersion.indexOf("PPC") != -1)

return true;

else return false;

}

function isPPC(){

if (navigator.appVersion.indexOf("PPC") != -1)

return true;

else return false;

}

if (isE3()) {

	document.write('');

}

else if (isE5MC()){

document.write('<LINK REL=stylesheet HREF="http://www.cticseattle.com/p.css">');}

else if (isPC()){

document.write('<LINK REL=stylesheet HREF="http://www.cticseattle.com/p.css">');}

else if (isNMC()){

document.write('<LINK REL=stylesheet HREF="http://www.cticseattle.com/m.css">');}

else if (isPPC()){

document.write('<LINK REL=stylesheet HREF="http://www.cticseattle.com/m.css">');}

else {	

document.write('<LINK REL=stylesheet HREF="http://www.cticseattle.com/p.css">');}

//-->

