function jump(){
	var x = document.getElementById( 'gallery' ).value;
	if (x == 'forsale'){
		var path = 'gallery.php?status=0';
		window.location = path;
	}
	else if (x == -1){
		var path ='';
	}
	else if (x == 0){
		var path = 'gallery.php?left=0';
		window.location = path;
	}
	else{
		var path = 'statement.php?gallery=' + x;
		window.location = path;
	}
}

function visit(newURL) {
  var site = window.open(newURL, 'website','scrollbars=1, location=1, menubar=1, status=1, toolbar=1, height=768, width=1024');
  site.window.focus();
  }
