// provides cross-browser functionality
//======================================
function getObjectRef(name) {
  if(document.getElementById) return document.getElementById(name);
  else if(document.all) return document.all[name];
  else return null;
}

// открывает всплывающее окно
//======================================
function popupWindow(url,width,height) {
	var left=screen.availWidth/2-width/2;
	var top=screen.availHeight/2-height/2;
//    this = window.open(url,'popupWindow','width='+width+',height='+height+',left='+left+',top='+top);
//	if (!this.opener)
//		this.opener = self; 
//	return this;
	}

