<!--
numbers=getCookie("monarch");
if (numbers=="") {
numbers=0;
setCookie("monarch",numbers);
}

function setCookie(keyname,val){
tmp=keyname+"="+escape(val)+";";
document.cookie=tmp;
}

function getCookie(keyname){
tmp=document.cookie +";";
index1=tmp.indexOf(keyname,0);
if (index1 != -1){
tmp=tmp.substring(index1,tmp.length);
index2=tmp.indexOf("=",0)+1;
index3=tmp.indexOf(";",index2);
return(unescape(tmp.substring(index2,index3)));
}
return("");
}

colors=getCookie("monarch");

if (colors==0) {
document.write("<LINK href='../css/color01.css' rel='stylesheet' type='text/css'>");
} else if (colors==1) {
document.write("<LINK href='../css/color02.css' rel='stylesheet' type='text/css'>");
} else if (colors==2) {
document.write("<LINK href='../css/color03.css' rel='stylesheet' type='text/css'>");
} else {
document.write("<LINK href='../css/color01.css' rel='stylesheet' type='text/css'>");
}

document.write("<LINK href='../css/contents.css' rel='stylesheet' type='text/css'>");
//-->