// JavaScript Document

function loadModjs(){

	$('invpro_paypalform').addEvent('submit', function(e){
		if($('inv_field1').value == ""
			||$('invamount').value == "" 
			||$('inv_field2').value == ""){
			
				new Event(e).stop();
				alert('You Must Enter All Values');
				
		}												   
	});

};

