<!--
/*
var message="";

function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->

<!--
var omitformtags=["input", "textarea", "select"]

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
*/
//-->

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function Chnbg(obj, Color) 
{ 
	obj.style.backgroundColor=Color
}
//-->

<!--
function submitit2(){

  if (document.mainnews.email.value.length<1) {
   alert('E-mail can not be blank!');
   document.mainnews.email.focus();
   return false;
  }
  var mailpattern = new RegExp('^.+@.+\..{2,3}$','gi');
  txt = document.mainnews.email.value;
  if (txt.search(mailpattern)<0) {
   alert('Wrong E-mail format!!');
   document.mainnews.email.focus();
   return false;
  }

  return true;
}
//-->