// JavaScript Document
function writeJS2() {
var str='';
str+='<div class="infobox">';
str+='Choose a colour scheme';
str+='<br>';
str+='<br>';
str+='<ul style="list-style: none; margin: 0px; padding: 0px">';
str+='<li style="padding: 2px">';
str+='<a class="normal" onkeypress="SetStyleSheet(\'default\'); return false;" title="Default Style - White background with blue text" onclick="SetStyleSheet(\'default\'); return false;" href="#">Default<\/a><br>';
str+='<\/li>';
str+='<li style="padding: 2px">';
str+='<a class="yellow" onkeypress="SetStyleSheet(\'yellow\'); return false;" title="Make Site Higher Contrast - Yellow background with black text" onclick="SetStyleSheet(\'yellow\'); return false;" href="#">Contrast<\/a><br>';
str+='<\/li>';
str+='<li style="padding: 2px">';
str+='<a class="system" onkeypress="SetStyleSheet(\'null\'); return false;" title="Make Site Reflect your system settings" onclick="SetStyleSheet(\'null\'); return false;" href="#">System<\/a><br>';
str+='<\/li>';
str+='<li style="padding: 2px">';
str+='<a class="hiviz" onkeypress="SetStyleSheet(\'hiviz\'); return false;" title="Make Site Hi Viz - Black background with white text" onclick="SetStyleSheet(\'hiviz\'); return false;" href="#">Hi Viz<\/a>';
str+='<\/li>';
str+='<\/ul>';
str+='<br>';
str+='<\/div>';
str+='<br>';
document.write(str);
}
writeJS2();