<!--
targetElement = null;

function getY( oElement ){
var iReturnValue = 0;while( oElement != null ) {iReturnValue += oElement.offsetTop;oElement = oElement.offsetParent;}return iReturnValue;}

function getX( oElement ){
var iReturnValue = 0;while( oElement != null ) {iReturnValue += oElement.offsetLeft;oElement = oElement.offsetParent;}return iReturnValue;}

function makeSelection(frm, id,e,frameId) { 	

  if(!frm || !id) 	return;

  targetElement = frm.elements[id];//  targetElement = document.getElementById(id);

  //top.frames[frameId].setCheckboxes();
  top.frames[frameId].setValues();
  
  var x = getX(e);//e.offsetLeft ;
  var y = getY(e);//.offsetTop ;  

  leftVal=x+"px";
  topVal=y+"px";
  $('#'+frameId).css({left:leftVal,top:topVal}).show('slow');


}
-->
