 /*

 * File Name :       script.js

 * Author Name :     Sabitha.K

 * Created Date :    16th February 2009

 * Description :     Javascript functions

 */

//BOF the function to show the address for realtor
function realtorDisplay(val)	
{
	if(val=="1")
	{
		document.getElementById("realtorOptions").style.display = "block";
	}
	else
	{
		document.getElementById("realtorOptions").style.display = "none";
	}
}
//EOF the function to show the address for realtor
//BOF the function to show the additional Lien HoldersDisplay
function additionalLienHoldersDisplay(val)
{
	if(val=="Yes")
	{
		document.getElementById("lienholdersOptions").style.display = "block";
	}
	else
	{
		document.getElementById("lienholdersOptions").style.display = "none";
	}
}
//EOF the function to show the dditional Lien Holders
//BOF the function to show the foreclosure sale
function foreclosuresaleDisplay(val)
{
	if(val=="Yes")
	{
		document.getElementById("foreclosuresaleOptions").style.display = "block";
	}
	else
	{
		document.getElementById("foreclosuresaleOptions").style.display = "none";
	}
}
//EOF the function to show the foreclosure sale