<!--
function changeBox(cbox) {
box = eval(cbox);
box.checked = !box.checked;
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
function MM_setTextOfTextfield(objName,x,newText) { //v3.0
  var obj = MM_findObj(objName); if (obj) obj.value = newText;
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
function MM_findObj(n, d) { //v3.0
var p,i,x;if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}
function MM_changeProp(objName,x,theProp,theValue) { //v3.0
var obj = MM_findObj(objName);
if (obj && (theProp.indexOf("style.")==-1 || obj.style)) eval("obj."+theProp+"='"+theValue+"'");
}
function MM_callJS(jsStr) { //v2.0
return eval(jsStr)
}
FSMenu.prototype.onshow = function(mN) { with (this)
{
 var m = menus[mN];
 if (!isIE || !window.createPopup) return;
 // Create a new transparent IFRAME if needed, and insert under the menu.
 if (!m.ifr)
 {
m.ifr = document.createElement('iframe');
m.ifr.src = 'about:blank';
with (m.ifr.style)
{
 position = 'absolute';
 border = 'none';
 filter = 'progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)';
}
m.lyr.ref.parentNode.insertBefore(m.ifr, m.lyr.ref);
 }
 // Position and show it on each call.
 with (m.ifr.style)
 {
left = m.lyr.ref.offsetLeft + 'px';
top = m.lyr.ref.offsetTop + 'px';
width = m.lyr.ref.offsetWidth + 'px';
height = m.lyr.ref.offsetHeight + 'px';
visibility = 'visible';
 }
}};
FSMenu.prototype.onhide = function(mN) { with (this)
{
 if (!isIE || !window.createPopup) return;
 var m = menus[mN];
 if (m.ifr) m.ifr.style.visibility = 'hidden';
}};

function checkEnter(e){ 
var characterCode 
if(e && e.which){ 
e = e
characterCode = e.which 
}
else{
e = event
characterCode = e.keyCode 
}
if(characterCode == 13){ 
MM_changeProp('find1','','value','3','INPUT/TEXT')
document.forms[0].submit() 
return false 
}
else{
return true 
}
}
//-->