var newWindow = null
function openWindow(url,w,h) {newWindow = window.open(url,"","resizable=no,scrollbars=no,status=no,toolbar=no,menubar=no,width=" + w + ",height=" + h )}

function doLink(url,target) {
if(target == "_blank") {
	window.open(url);
	}
else {
	location.href=url;
	}
}


function switchPage(form){
var myUrl = document.getElementById("paper_links").value;
window.location.href = myUrl;
}

function openChat() {
		var chat = window.open('http://bbraun.21torr.com','Chat','scrolling=no, height=590px, width=780px'); 
chat.focus() 
}