// JavaScript Documentif (sel_val=="") 
function photochk()
{
if(document.Frm_PhotoGallery.sel_category!="1")
{
if(document.Frm_PhotoGallery.txt_gallery.value=="")
	{
	alert("Enter Gallery Title");
	document.Frm_PhotoGallery.txt_gallery.focus();
	return false;
	}
	
if(!isNaN(document.Frm_PhotoGallery.txt_shortdesc.value))
	{
	alert("Enter Description");
	document.Frm_PhotoGallery.txt_shortdesc.focus();
	return false;
	}
}
return true;
}