<!-- Hide from JavaScript-Impaired Browsers
// Script by Riverdrift 2002
function makeit(form){
var txt = '<div align="center">\r\n';
if(document.Mail.Addy.value)          
txt+='<form method="post" action="mailto:'
+document.Mail.Addy.value+'?no_signature=true">\n';
if(document.Mail.Tbc.value)          
txt+='<table width="380" bgcolor="'
+document.Mail.Tbc.value+'"'
+'border="2" align="center"><tr>\n';
if(document.Mail.Title.value)          
txt+='<th colspan="2" align="center">\n'
+'<font color="'+document.Mail.Texc.value+'">';
if(document.Mail.Title.value)          
txt+=''+document.Mail.Title.value+'</font>\n';
if(document.Mail.Sub.value)          
txt+='</th></tr><tr><td>\n'
+'<font color="'+document.Mail.Texc.value+'">';
if(document.Mail.Sub.value)          
txt+=''+document.Mail.Sub.value+'</font>\n';
if(document.Mail.Sub.value)          
txt+='</td><td>\n'
+'<input type="text" name="'
+document.Mail.Sub.value+'" size="25" />\n';
if(document.Mail.Ent1.value)          
txt+='</td></tr><tr><td>\n'
+'<font color="'+document.Mail.Texc.value+'">';
if(document.Mail.Ent1.value)          
txt+=''+document.Mail.Ent1.value+'</font>\n';
if(document.Mail.Ent1.value)          
txt+='</td><td>\n'
+'<input type="text" name="'
+document.Mail.Ent1.value+'" size="25" />\n';
if(document.Mail.Ent2.value)          
txt+='</td></tr><tr><td>\n'
+'<font color="'+document.Mail.Texc.value+'">';
if(document.Mail.Ent2.value)          
txt+=''+document.Mail.Ent2.value+'</font>\n';
if(document.Mail.Ent2.value)          
txt+='</td><td>\n'
+'<input type="text" name="'
+document.Mail.Ent2.value+'" size="25" />\n';
if(document.Mail.Ent3.value)          
txt+='</td></tr><tr><td colspan="2" align="center">\n'
+'<font color="'+document.Mail.Texc.value+'">';
if(document.Mail.Ent3.value)          
txt+=''+document.Mail.Ent3.value+'</font>\n';
if(document.Mail.Ent3.value)          
txt+='<input type="radio" name="action" value="'
+document.Mail.Ent3.value+'" /> \n'
+'<font color="'+document.Mail.Texc.value+'">'
+''+document.Mail.Ent4.value+'</font>\n'
+'<input type="radio" name="action" value="'
+document.Mail.Ent4.value+'" />\n';
if(document.Mail.Ent5.value)          
txt+='</td></tr><tr><td colspan="2" align="center">\n'
+'<font color="'+document.Mail.Texc.value+'">';
if(document.Mail.Ent5.value)          
txt+=''+document.Mail.Ent5.value+'</font>\n'
+'<br /><textarea cols="35" rows="2"'
+' name=message:></textarea>\n';
if(document.Mail.Tbc.value)          
txt+='</td></tr><tr><td colspan="2" align="center">\n'
+'<input type="submit" name="send" value="SEND" />\n'
+'  <input type="reset" name="clear"'
+' value="CLEAR" />\n';
if(document.Mail.Tbc.value)          
txt+='</td></tr></table>\n</form>\n';
txt = txt + '</div>\n';
document.Mail.box.value=txt;
}
function viewit(){
var temp = document.Mail.box.value; 
if((navigator.appVersion.indexOf('WebTV;2.7') !=-1) 
|| (navigator.appVersion.indexOf('WebTV;2.8') !=-1) 
|| (navigator.appVersion.indexOf('WebTV;2.8.2') !=-1)) { 
location.href="#"; 
document.open(); 
document.write(temp); 
document.close(); 
} 
else {
temp = document.Mail.box.value; 
preWindow = open("",
"preWindow","status=1,resizable=yes,menubar=1,toolbar=1,scrollbars=yes"); 
preWindow.document.open(); 
preWindow.document.write(temp); 
preWindow.document.close(); 
}
}
function copy()  {
document.Mail.box.focus();
document.Mail.box.select();
}
function ResetPage(form) {
{ 
document.Mail.value="";
form.Tbc.value="";  
form.Addy.value="";  
form.Texc.value="";  
form.Title.value="";  
form.Sub.value="";  
form.Ent1.value="";  
form.Ent2.value="";  
form.Ent3.value="";  
form.Ent4.value="";  
form.Ent5.value="";  
form.box.value="";  
}
}
// End Hiding -->
