function getObj(name)
{
  if (document.getElementById)
  {
  	this.obj = document.getElementById(name);
	this.style = document.getElementById(name).style;
  }
  else if (document.all)
  {
	this.obj = document.all[name];
	this.style = document.all[name].style;
  }
  else if (document.layers)
  {
   	this.obj = document.layers[name];
   	this.style = document.layers[name];
  }
}//end of getObj

function OpenWindow(url, w, h, scrollbars) {
	winl = (screen.width-w)/2;
	//wint = (screen.height-h)/2;
	wint = 0;
	var newWind=window.open(url,"",",menubar=yes,location=yes,toolbar=yes,status=yes,resizeable=yes,scrollbars=" + scrollbars + ",width=" + w + ",height=" + h + ",left=" + winl + ",top=" + wint);
}
blnPageLoaded = true;

