function toggle(id) {
if (document.getElementById(id).style.display=="none") {
	document.getElementById(id).style.display="inline";
	document.getElementById(id + " img").src="images/expand.gif";
} else {
	document.getElementById(id).style.display="none";
	document.getElementById(id + " img").src="images/collapse.gif";	
}
}

function confirmSubmit(msg)
{
var agree=confirm(msg);
if (agree)
	return true ;
else
	return false ;
}
