/*javas page specfic javascript*/
function xtra(){
testCookieJy(cookieName);
}

//check for off status set by cookie
function testCookieJy(cName){
var obj = document.getElementById('javayes');
if(obj){
var cookieNE = '';
if (navigator.cookieEnabled == -1) {cookieNE = ' (<b>please enable cookies in your browser for this feature to work</b>)';}
obj.innerHTML = 'By ticking the mouse-over box you can enable context related help by moving the mouse pointer over the <span id="tst">highlighted text</span>, the text will turn orange and a definition will appear. Un-checking the box disables this feature again. This feature will attempt to save a small file known as a cookie on your <acronym title="Personal Computer">PC</acronym> to remember your preference. ' + cookieNE +  '<br /><input type="checkbox" id="chbx" onClick="checkChange()" />Enable mouse-over <span class="gdf">:Definitions</span><p>Ticking the mouse-over box also highlights the defined acronyms.  If you move your mouse pointer over text underlined with green dashes e.g. <acronym title="Phase Locked Loop">PLL</acronym>, the acronym meaning will be displayed.</p>';
var start = document.cookie.indexOf(cName);
if (start == -1){
document.getElementById('chbx').checked = false;
}
else{
document.getElementById('chbx').checked = true;
initmouseover();
}
}
}

