
function GoToURL(u) {
	document.location = u;
}
function PopUp(u, w, h, n, p) {
	if(!u) return;
	if(!h) h = 600;
	if(!w) w = 800;
		
	if(p == 1) {
		p = "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes,width=" + w + ",height=" + h;
	} else if(!p) {
		p = "status=no,scrollbars=yes,resizable=yes,width=" + w + ",height=" + h;
	}
	if(!n) n = "popup";
	
	var popup = window.open(u,n,p);
	popup.focus();	
}