function ShowImagePopup(w,h,url)
{
	if (w>window.screen.availWidth-50) 
		w = window.screen.availWidth-50;
		
	if (h>window.screen.availHeight-50) 
		h=window.screen.availHeight-50;
		
	window.open(url,'','width='+w+',height='+h+',scrolling=auto,location=0,address=0,toolbar=0,top=0,left=0,resizable=1');
}

function check_index_huur_straal()
{
	if (document.huurform.plaats_of_postcode.value!='')
	{
		document.huurform.straal.disabled = false;
	}
	else
	{
		document.huurform.straal.disabled = true;
	}
}

function check_index_koop_straal()
{
	if (document.koopform.plaats_of_postcode.value!='')
	{
		document.koopform.straal.disabled = false;
	}
	else
	{
		document.koopform.straal.disabled = true;
	}
}
function check_index_bog_straal()
{
	if (document.bogform.plaats_of_postcode.value!='')
	{
		document.bogform.straal.disabled = false;
	}
	else
	{
		document.bogform.straal.disabled = true;
	}
}