var doubleClick = 0;

function noDoubleClick(form){
	if (doubleClick == 0){
		doubleClick++;
		return true;
	}

	return false;
}