<!-- Hide from JavaScript-Impaired Browsers
function viewit() 
{ 
document.write (document.drop.box.value) 
} 
function copy()  {
document.drop.box.focus();
document.drop.box.select();
}
function makeit(){
var txt = '';
if(document.drop.Name.value)          
txt+='<div id="'+document.drop.Name.value+'"';
if(document.drop.Postp.value)          
txt+='style="position:absolute;top:'
+document.drop.Postp.value+'px;left:'
+document.drop.Posb.value+'px;"';
if(document.drop.Name.value)          
txt+='>\n';
if(document.drop.Name.value)          
txt+='<input type="button" onclick="document.getElementById(\''
+document.drop.Mid.value+'\').style.visibility=\'visible\';'
+document.drop.Name.value+'.style.visibility=\'hidden\';"';
if(document.drop.Title.value)          
txt+=' value="'+document.drop.Title.value+'" />\n</div>\n';
if(document.drop.Name.value)          
txt+='<div id="'+document.drop.Mid.value+'"'
+' style="visibility:hidden;';
if(document.drop.Mostp.value)          
txt+='position:absolute;top:'
+document.drop.Mostp.value+'px;left:'
+document.drop.Mosb.value+'px;';
if(document.drop.Name.value)          
txt+='">\n<p>\n';
if(document.drop.Codes.value)          
txt+=''+document.drop.Codes.value+'\n';
if(document.drop.Name.value)          
txt+='</p>\n<input type="button" onclick="document.getElementById(\''
+document.drop.Mid.value+'\').style.visibility=\'hidden\';'
+document.drop.Name.value+'.style.visibility=\'visible\';"'
+' value="Close" />\n</div>'; 
txt = txt + '\r\n'
document.drop.box.value=txt;
}
// End Hiding -->
