
function gothere(){
	var box = document.getElementById("project_id").options;
	var where_to_id = box[box.selectedIndex].value;
	if (where_to_id == ""){return}
	else {
		where_to = "/for_rent_project.asp?pid=" + where_to_id
		window.location.href = where_to;}
}
function gothereToo(){
	var box = document.getElementById("project_id").options;
	var where_to_id = box[box.selectedIndex].value;
	if (where_to_id == ""){return}
	else {
		where_to = "/for_rent_app.asp?aid=" + where_to_id
		window.location.href = where_to;}
}