<!--

function showaddcomment()
{
	if (document.getElementById("addnew").style.display=="none")
	
		document.getElementById("addnew").style.display="block"
	
	else
		document.getElementById("addnew").style.display="none"
}

//GALLERY FUNCTIONS=====================================================

	function rate(gID)
	{
		
		window.open("gallery-image-rating.asp?GalleryID=" + gID,"WinRate","height=480,width=300,top=100,left=100,scrollbars=no,resizable=yes");
	}		


	function SortRes(page)
	{
		
		document.location.href=page+"?SB=" + form1.SortBy.value ;
		
	}


	function CheckFields()
	{
		if(FormGallery.PageID.value=='')
		{
			alert("Please Select Bird");
			FormGallery.PageID.focus();
		}
		else if(FormGallery.Picture1.value=='')
		{
			alert("Please upload image");
		}
		else
		{
			FormGallery.submit();
		}
	}
	
	
	

	
	function EmailAFriend(gID)
	{
		//alert();
		window.open("email-a-friend.asp?GalleryID=" + gID,"WinEmail","height=345,width=400,top=100,left=100,scrollbars=yes,resizable=yes,toolbars=yes");
	}

//-->