function openPopup( url, title, features)
{
	window.open( url, title, features );
}

function openIT(u) {
	var W = 654;
	var H = 490;
	var w=window.screen.width;
	var h=window.screen.height;
	var X=Math.ceil((w-W)/2);
	var Y=Math.ceil((h-H)/2);
	if( u.indexOf( "?" ) <= 0 )
	{
		var CWIN=window.open(u,'TechExplorer','width='+W+',height='+H+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0',true);
	}
	else
	{
		var CWIN=window.open(u,'TechExplorer','width='+W+',height='+H+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0',true);
	}
	CWIN.moveTo(X,Y)
	CWIN.focus();
	CWIN.setURL=function(u) { if (this && !this.closed) { this.location.href=u } }
	CWIN.closeIT=function() { if (this && !this.closed) this.close() }
}

function openWin(URL) {
	window.open(url);
}
function Open01(URL){
  SW_size = screen.width;
  SH_size = screen.height;
  W_size = 800;
  H_size = 600;
  L_size = (SW_size-W_size)/2;
  T_size = (SH_size-H_size)/2;
  window.open(URL,"LCV","directories=no,menubar=no,location=no,scrollbars=no,status=no,resizable=no,width=" + W_size + ",height=" + H_size + ",left=" + L_size + ",top=" + T_size );
}
