function DisableEnableApt()
{
	if (document.forms.Form1.elements.lstAptCityState.selectedIndex == 0)
	{
		document.forms.Form1.elements.lstAptStateID.disabled = false;
	}
	else
	{	
		document.forms.Form1.elements.lstAptStateID.disabled = true;
	}
}

function DisableEnableRnO()
{
	if (document.forms.Form1.elements.lstRnOCityState.selectedIndex == 0)
	{
		document.forms.Form1.elements.lstRnOStateID.disabled = false;
	}
	else
	{	
		document.forms.Form1.elements.lstRnOStateID.disabled = true;
	}
}

function openDirectionsWindow(location_id)
{
    var win = window.open("/DrivingDirections.aspx?id=" + location_id, "Directions", "directories=no,height=600,width=960,location=no,resizable=no,toolbar=no,scrollbars=yes");
    win;
}

function OpenDrivingDirections(location_id)
{
    openDirectionsWindow(location_id);
}

function openWin(url, features) {
	var win;
	win = window.open(url, 'Popup',features, true);
	
}

