function p_over(what) {

    //var x = what.offsetLeft;
    //var y = what.offsetTop;

    function getSize() {
	  if (document.all) {
	    // IE4+ or IE6+ in standards compliant
	    myWidth  = (document.documentElement.clientWidth) ? document.documentElement.clientWidth : document.body.clientWidth;
	    myHeight = (document.documentElement.clientHeight) ? document.documentElement.clientHeight : document.body.clientHeight;
	    myScroll = (document.documentElement.scrollTop) ? document.documentElement.scrollTop : document.body.scrollTop;
	  } else {
	    // Non-IE
	    myWidth = window.innerWidth;
	    myHeight = window.innerHeight;
	    myScroll = window.pageYOffset;
	  }
	}
	/*
	function getTop(o)
	{
	if(o.getBoundingRect)
	return o.getBoundingRect().top+document.body.scrollTop-2
	var r=o.offsetTop
	while(o=o.offsetParent) r+=o.offsetTop
	return r
	}
    */
    //var Htext='<img id=\"pop_pic\" border=0>'+document.getElementById('con'+what.id+'').innerHTML+'';
    //var Htext = document.getElementById(what).innerHTML;
    document.getElementById('hint').innerHTML='<img id=\"pop_pic\" border=0>';
    document.getElementById('pop_pic').src=what;

	getSize();

    document.getElementById('hint').style.left = '28%';//x+what.offsetWidth+100;
    document.getElementById('hint').style.top = ((myHeight / 2) + myScroll)-400 + 'px';
    document.getElementById('hint').style.display = "";

}

function p_out(what) {
    document.getElementById('hint').style.display = "none";
}

function stop() {
         return true;
}