
function go_back()
{
var path = document.referrer;
location.replace(path);
}


function rollOver(id,style) {
document.getElementById(id).className=style;
}

var NewWin;

function OpenNew(url,Name,w,h) {
closeWin ()
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,status=yes,resizeable=yes';
NewWin=window.open(url, 'NewWin', winprops);
NewWin.window.focus();
}

function closeWin () {
    if (NewWin) {
        NewWin.close ();
    } else {
return false;
}
}


window.defaultStatus="Part of the R-Property Network"

function openDir( form ) { 

	var newIndex = form.fieldname.selectedIndex; 

	if ( newIndex == 0 ) { 

		alert( "Please select a location!" ); 

	} else { 

		cururl = form.fieldname.options[ newIndex ].value; 

		window.location.assign( cururl ); 

	} 

} 

