function toggle(DivId) {
	var Div = document.getElementById(DivId);
	Div.style.display = (Div.style.display == "block") ? "none" : "block";
}

function showstuff(boxid){
 document.getElementById(boxid).style.visibility="visible";
}

function hidestuff(boxid){
  document.getElementById(boxid).style.visibility="hidden";
}

function confirmdelete(delurl) {
	var msg = "Are you sure you want to Delete this?";
	if (confirm(msg))
		location.replace(delurl);	
}

function make_blank() {
  document.form1.s.value ="";
}




<!--
/*
Select and Copy form element script- By Dynamicdrive.com
For full source, Terms of service, and 100s DTHML scripts
Visit http://www.dynamicdrive.com
*/
var copytoclip=1

function HighlightAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
if (document.all&&copytoclip==1){
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.status="Code highlighted and copied to clipboard!"
setTimeout("window.status=''",1800)
}
}
//-->



