a=navigator.appName.indexOf("Net",0);
if(a == -1 ){
		document.write("<STYLE TYPE='TEXT/CSS'>");
		document.write("BODY{font-size:10pt;}");
		document.write("CAPTION{font-size:11pt;}");
		document.write("TD{font-size:10pt;}");
		document.write("</STYLE>");
		}
		
function getCookie(key){
	tmp=document.cookie+";";
	tmp1=tmp.indexOf(key, 0);
	if(tmp1!=-1){
		tmp=tmp.substring(tmp1,tmp.length);
		start=tmp.indexOf("=",0)+1;
		end=tmp.indexOf(";",start);
		return(unescape(tmp.substring(start,end)));
	}
	return("");
}

function setCookie(key,val) {
	tmp=key+"="+escape(val)+";";
	tmp+="expires=Fri, 31-Dec-2010 23:59:59; ";
	document.cookie=tmp;
}