function putvalue(val,obj1)
{

document.getElementById(obj1).value = val;

}
var timer_id;
function scroll_iframe(frm,inc,dir) {
  if (timer_id) clearTimeout(timer_id);
  if (window.frames[frm]) {
    if (dir == "v") window.frames[frm].scrollBy(0, inc);
    else window.frames[frm].scrollBy(inc, 0);
    timer_id = setTimeout("scroll_iframe('" + frm + "'," + inc + ",'" + dir + "')", 20);
  }
}

function stopScroll() { if (timer_id) clearTimeout(timer_id); }

    function maresteImaginea(imagine){
		pY=document.documentElement.scrollTop;
		alert ("cica sunt la pozitia y:"+pY);
 		var x=parent.document.getElementById('popimg');
 		var y=parent.document.getElementById('Layer1');
 		var z=parent.document.getElementById('Layer2');
        x.src=imagine;
		y.style.top=pY;
		z.style.top=pY;
		y.style.visibility = "visible";
		z.style.visibility = "visible";
	}

    function inchideImaginea(){
 		var x=parent.document.getElementById('popimg');
 		var y=parent.document.getElementById('Layer1');
 		var z=parent.document.getElementById('Layer2');
 		z.style.visibility = "hidden";
		y.style.visibility = "hidden";
		x.src='images/spacer.gif';
	}


