function openPage(typ,id,LID) {
	url = "popup.php?typ="+typ+"&VID="+id+"&LID="+LID;
	neu = 1;
	if (typeof (newwindow)=="string") {if (newwindow=="open") neu = 0;}
	if (typeof (newwindow)=="object") {neu = 0;}
	if (neu==1) {
		links = (screen.width-525)/2;
		newwindow = window.open(url,"","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=525,height=528,top=100,left="+links);
		newwindow2 = newwindow;
	} else {
		top.newwindow2.focus(); 
		top.newwindow2.location.href = url;
		
	}
}


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];
  }
}