
<!-- This function is used to prevent users submitting 'call me back button' more than one request --> 
var postedForm = false;
function editAndFormSubmit()
{
	if (!postedForm)
	{
		postedForm = true;
		var button = document.CALLBACK.ButtonId.value;
		document.CALLBACK.action = "http://p2p.telnexia.net/servlet/callrequest.P2Prequest";
		document.CALLBACK.submit();
	}
}



