

document.write('<IMG name="house" onmouseover="change(\'house\', true)" onmouseout="change(\'house\', false)" height="133" src="http://www.aicvic.com.au/images/house_off.jpg" width="200">');


function validateForm(obj){
	if(obj.name.value==""){
		alert("Please enter your name");
		obj.name.focus();
		return false;
	}
	if(obj.email.value==""){
                alert("Please enter Email Address");
                obj.email.focus();
                return false;
        }
	return true;
}

