// JavaScript Document

function clearField(id, text, field) {
	if($(id).value == text) {
		$(id).value = '';
		$(id).style.fontStyle = 'normal'
	}
}

function loadField(id, text, field) {
	if($(id).value == '') {
		$(id).style.fontStyle = 'italic'
		$(id).value = text;
	}
}

function woning(woningID)
{  
	url = "http://www.webkey3.nl/cms3/hk.php?tool=woningen&action=wijzigen&id=" + woningID;
	try
	{
		obj = window.top.topvenster;
	}
	catch(e)
	{
	}
	
	if(obj)
	{
		window.top.location.href=url;
	}
}
