// JavaScript Document

function property_atta_validation(frm)
{
	if(frm.attachment_name.value=="")
	{
		alert("Please fill the attachment name.");
		frm.attachment_name.focus();
		return (false);	
	}
}
