function windowOpen(w, h, url){
	newWin = window.open(url,"popup","width="+w+", height="+h+", scrollbars=auto, resizable=no, toolbar=no, menubar=no, status=no, location=no");
	newWin.focus();
}