// Calculates the object's absolute position, and width and height

function showMenu(object,div) {

//alert(document.getElementById(object).top);

//position.cx = object.offsetWidth;
//position.cy = object.offsetHeight;
//alert(position.x);
//document.getElementById(div).style.top = position.cy+15;
//document.getElementById(div).style.top = position.cx+30;
//document.getElementById(div).style.display = 'block';

}


