function ShowTip(fArg,sender,e)
{
if(document.all){
	
  	var tooltipOBJ = document.getElementById('tt' + fArg);
 	tooltipOBJ.style.top=event.clientY+10;
  	tooltipOBJ.style.left=event.clientX+10;
  	tooltipOBJ.style.visibility = "visible";
  }else{
  	try{
	event=e;
	
  	var tooltipOBJ = document.getElementById('tt' + fArg);
 	tooltipOBJ.style.visibility = "visible";
	tooltipOBJ.style.top=event.pageY+10+"px";
  	tooltipOBJ.style.left=event.pageX+10+"px";
	}catch(e){
		
	}
  	
  }
}
function HideTip(fArg)
{
  var tooltipOBJ = document.getElementById('tt' + fArg);
  if (tooltipOBJ != null) {
    tooltipOBJ.style.visibility = "hidden";
  }
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=1010,height=600,left = 50,top = 50');");
}
function popUpSmall(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=430,height=285,left = 150,top = 150');");
}
