function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function MM_openBrWindow(theURL,winName,features) { //v2.0 WITH focus added GSandV
  var thewin = window.open(theURL,winName,features);
  thewin.focus();
}

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();	
}