function doConfirm(red, txt){
	txt ="Are you sure you want to delete "+txt+"?";
	var answer = confirm(txt);
     if (answer){
         window.location=red;
      }
}


function showHide(id) {
	ID = document.getElementById(id); 
	if (ID.className == "hide") { 
		  ID.className = "show"; 
	   } 
	   else { 
		  ID.className="hide"; 
	  } 

}


function MM_goToURL() { 
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
