function clickedSubmit(submit_control)
{
	submit_control.disabled=true;
	submit_control.form.submit();
	return true;
}

function confirmDelete(URL,msg)
{
	choice=confirm(msg);
	if(choice)
		document.location.href = URL;
}

function openPopUp(URL,width,Height)
{
	w=window.open(URL,"JSPopUp","width=" + width +",height=" + Height);	
}