var test;

	function goURL(str){
		if(str != 'x'){
			test = window.open(str, "_blank");
			setTimeout("setFocus();", 400);
		}
	}

	function setFocus(){
		test.focus();
	}