a1=new Image;a1.src="img/dotr.jpg";
a2=new Image;a2.src="img/dotg.jpg";
a3=new Image;a3.src="img/lupaor.jpg";
function Light(flag,id){
    if(flag==0){
		document.getElementById('m'+id).style.backgroundImage = 'url(./img/dotr.jpg)';
    }
    else{
    	document.getElementById('m'+id).style.backgroundImage = 'url(./img/dotg.jpg)';
    }
 }

var popup;
function Zoom(rid,id,w,h){
    	var id = parseInt(id) || 0;
    	var width = parseInt(w) || 0;
    	var height = parseInt(h) || 0;
    	width=width+20;
    	height=height+100;
    	if(popup && !popup.closed){popup.close()}
    	popup=window.open('popup.php?rid='+rid+'&id='+id, '_blank', 'scrollbars=yes,height='+height+',width='+width+',top=100,left=200');
    	return false;
}  

