<!--

function ValidateFund()
{

if ( document.Checkfundperform.products.value == "" )
	{
	 alert('Please select an Investment')
	 return false;
	} 
}
function validatePage()
{
	if ( document.Checkfundperform.products.value == "" )
	{
	 alert('Please select an Investment')
	 return false;
	} 
	if(document.Checkfundperform.products.value != "" )
	  {
	    if(document.getElementById("fund").value == "")		
	      {
	        alert('Please select a Fund')
	        return false;
	      }			
	  }
}

//-->
