<!-- Hide from JavaScript-Impaired Browsers
// Script by Riverdrift 2001
function makeit(form){
var txt = '<div align="center">\r\n';
if (document.store.tab.value != "") {
txt = txt + '<table bgcolor="' +document.store.tab.value + '" border="6"'
+'><tr><td align="center">\n';
}
if (document.store.make[0].checked) {
txt += '<form name="storage" action="">\n'
+'<select onchange="form.sig.value=this'
+'[this.selectedIndex].value">\n';
}
if (document.store.make[1].checked) {
txt += '<form name="storage" action="">\n'
+'<select onchange="form.sig.value=this'
+'[this.selectedIndex].value" size="5">\n';
}
if(document.store.titl.value)          
txt+='<option>'+document.store.titl.value+
'</option>\n<option value=\'Store Some Urls\'>'
+'Store Some Urls</option>\n'
+'<option value=\'Store Some Codes\'>Store Some Codes'
+'</option>\n'
+'<option value=\'Store Whatever\'>Store Whatever'
+'</option>\n'
if (document.store.make[0].checked) {
txt += '</select>\n<br />\n<textarea rows='
+'"4" cols="35" name="sig" onfocus="select()">\n'
+'<\/textarea>\n</form>\n';
}
if (document.store.make[1].checked) {
txt += '</select>\n<br />\n<textarea rows='
+'"4" cols="35" name="sig" onfocus="select()">\n'
+'<\/textarea>\n</form>\n';
}
if (document.store.tab.value != "") {
txt = txt + '</td></tr></table>\n';
}
txt = txt + '</div>\r\n'
document.store.code.value=txt;
}
function viewit() {
var temp=document.store.code.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.store.code.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.store.code.focus();
document.store.code.select();
}
function ResetPage(form) {
{ 
form.code.value="";    
form.tab.value="";    
form.make.value="";    
}
}
// End Hiding -->

