//General Javascript Functions

function checkclear(what){
if(!what._haschanged){
what.value=''
};
what._haschanged=true;
}

function toggle(d)
{
	var o=document.getElementById(d);
	o.style.display=(o.style.display=='none')?'block':'none';
}
