//	Opens a new window with specified properties
function openXWin(url, name, w, h) {
	if (typeof(w) == "undefined") w = 400;
	if (typeof(h) == "undefined") h = 600;
	
 
	var screenW = screen.width;
	var screenH = screen.height;
	var posX = (screenW/2)-(w/2);
	var posY = (screenH/2)-(h/2);
	
	var sFeatures;
	sFeatures = "top="+posY+",left="+posX+",height="+h+",width="+w;
	
	sFeatures += ",scrollbars=no";
	sFeatures += ",resizable=yes";
	sFeatures += ",status=no";
	sFeatures += ",titlebar=no";
	sFeatures += ",toolbar=no";
	
  // var myEnv = "http://www.equipt1.com/"
  var myEnv = "http://www.equipt1.com/h/"
  var myURL = myEnv+url;

  //Show it
	var win = window.open(myURL,name,sFeatures);
	win.focus();
}
