<!-- 
function getCook(ckname){ 
var cookieValue = "";
var search = ckname + "=";//×Ö·û
offset = document.cookie.indexOf(search);//
if (offset != -1) { 
offset += search.length;//ÐÂ
end = document.cookie.indexOf(";", offset);//
if (end == -1) end = document.cookie.length;//
cookieValue = unescape(document.cookie.substring(offset, end))//Âë
}
return cookieValue;//
}
function getCooks(ckname1,ckname2){ 
var cookieValue = "";
var search = ckname1 + "=";//×Ö
offset1 = document.cookie.indexOf(search);//ÖÃ
if (offset1 != -1) { 
offset1 += search.length;
end1 = document.cookie.indexOf(";", offset1);//ÖÃ
if (end1 == -1) end1 = document.cookie.length;//Î²
cookieValue = unescape(document.cookie.substring(offset1, end1))//
var search = ckname2 + "=";//
offset2 = cookieValue.indexOf(search);//ÖÃ
if (offset2 != -1) { 
offset2 += search.length;
end2 = cookieValue.indexOf("&", offset2);//ÖÃ
if (end2 == -1) end2 = cookieValue.length;//Î²
cookieValue = cookieValue.substring(offset2, end2)//×Ö·û
}else{
cookieValue = "";
}
}
return cookieValue;//
}
function ReImgSize(){
for (j=0;j<document.images.length;j++){
    document.images[j].width=(document.images[j].width>520)?"520":document.images[j].width;
   }
}

function mouse_over(thisTD){ 
thisTD.style .borderLeft = "1px solid buttonhighlight" ; 
thisTD.style .borderRight = "1px solid buttonshadow"; 
thisTD.style .borderTop = "1px solid buttonhighlight"; 
thisTD.style .borderBottom = "1px solid buttonshadow"; 
} 
function mouse_out(thisTD){ 
thisTD.style .borderLeft = "0px" ; 
thisTD.style .borderRight = "0px"; 
thisTD.style .borderTop = "0px"; 
thisTD.style .borderBottom = "0px"; 
} 
if (window.Event) 
document.captureEvents(Event.MOUSEUP);  
function nocontextmenu() 
{
 event.cancelBubble = true
 event.returnValue = false; 
 return false;
} 
function norightclick(e) 
{
 if (window.Event) {
  if (e.which == 2 || e.which == 3)
   return false;
 }
 else
  if (event.button == 2 || event.button == 3)  {
   event.cancelBubble = true
   event.returnValue = false;
   return false;
  } 
} 
document.oncontextmenu = nocontextmenu;  // 
document.onmousedown = norightclick;  // 
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->







