<!-- Hide script from old browsers

function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2){
clearInterval(highlighting)
if (which2.style.MozOpacity)
which2.style.MozOpacity=0.3
else if (which2.filters)
which2.filters.alpha.opacity=70
}

function highlightit(cur2){
if (cur2.style.MozOpacity<1)
cur2.style.MozOpacity=parseFloat(cur2.style.MozOpacity)+0.1
else if (cur2.filters&&cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=10
else if (window.highlighting)
clearInterval(highlighting)
}

function pick(obj) {
obj.filters.alpha.opacity=100;
obj.filters.gray.enabled=false;
}
function unpick(obj) {
obj.filters.alpha.opacity=80;
obj.filters.gray.enabled=true;
}
function lightup(imageobject, opacity){
if (navigator.appName.indexOf("Netscape")!=-1&&parseInt(navigator.appVersion)>=5)
imageobject.style.MozOpacity=opacity/100
else if (navigator.appName.indexOf("Microsoft")!=-1&&parseInt(navigator.appVersion)>=4)
imageobject.filters.alpha.opacity=opacity
}

function list(){
if (document.MailList.MLemail.value.indexOf("@") == -1 ||
document.MailList.MLemail.value.indexOf('.',0)==-1 ||
document.MailList.MLemail.value == "") 
{
alert("Please enter a valid E-Mail address!");
return;
}
var formatChecked 
for (var i=0; i<document.MailList.format.length; i++) {
if (document.MailList.format[i].checked) {
formatChecked = document.MailList.format[i].value
}
}
if(!formatChecked){ //if formatChecked does not equal null
alert("Choose either HTML or Text!")
}
else{
document.MailList.submit();
}
}

function subl(){
var strname=document.SubmitLink.name.value;
var strtitle=document.SubmitLink.title.value;
var strurl=document.SubmitLink.url.value;
var strdescription=document.SubmitLink.description.value;
if(strname==""){
alert("Please provide your name!");
return;
}
if (document.SubmitLink.email.value.indexOf("@") == -1 ||
document.SubmitLink.email.value.indexOf('.',0)==-1 ||
document.SubmitLink.email.value == "") 
{
alert("Please enter a valid e-mail address!");
return false;
}
if(strtitle==""){
alert("Please provide the link title!");
return;
}
if(strurl=="http://"){
alert("Please provide the link URL!");
return;
}
if(strdescription==""){
alert("Please provide the link description!");
return;
}
document.SubmitLink.submit();
}

function validate(){
var strformat=document.List.format.value;
if (document.List.MLemail.value.indexOf("@") == -1 ||
document.List.MLemail.value.indexOf('.',0)==-1 ||
document.List.MLemail.value == "") 
{
alert("Please enter a valid E-Mail address!");
return false;
}
if(strformat==""){
alert("Choose either HTML or Text!");
return;
}
document.List.submit();
}

// End hiding script from old browsers -->