function open_window(uRL) {
	var window_height = 50, window_width = 300;
	var win = window.open(uRL, "window","toolbar=no, width="+window_width+", height="+window_height+" ,status=no, scrollbars=no, resizable=no, menubar=no");
}

function ld(theurl) {
	document.getElementById("url").href = theurl;
	document.getElementById("url").click();
}

function set_div_height( id, h){
	document.getElementById(id).style.height = h+"px";
	//alert(h);
}

function getMouseXY(id)
{
/*
    // Main function to retrieve mouse x-y position of the mouse.

    // Temporary variables to hold mouse x-y positions.
    var tempX = 0;
    var tempY = 0;

    // Detect if the browser is IE or not.
    // If it is not IE, we assume that the browser is NS.
    var IE = document.all?true:false

    if (IE)
    {
         // grab the x-y pos.s if browser is IE
         tempX = event.clientX + document.body.scrollLeft;
         tempY = event.clientY + document.body.scrollTop;
    }
    else
    {
         // grab the x-y pos.s if browser is NS
         tempX = e.pageX;
         tempY = e.pageY;
    }
*/
}
