plus = new Image(); plus.src = '/i/+.gif';
minus = new Image(); minus.src = '/i/-.gif';

function Obj(id){if(id){return document.getElementById(id);}else{return false;}}

function Drop(id){
	if(o = Obj(id+'_sub')){
		if(o.style.display == 'block'){
			o.style.display = 'none';
			Obj(id+'_img').src = '/i/+.gif';
		}else{
			o.style.display = 'block';
			Obj(id+'_img').src = '/i/-.gif';
		}
	}
}

function pop(Url){
  window.open(Url,"","width=400,height=550,copyhistory=no,directories=no,menubar=no,location=no,scrollbars=yes,resizable=1,toolbar=no");
}


function Zoom(Url, title, width, height) {
  newWindow=window.open('','','width='+width+',height='+height+',toolbar=0,'+'scrollbars=0,'+'resizable=0');
  newWindow.focus();
  newWindow.document.open();
  newWindow.document.write("<title>"+title+"</title><body style=\"padding:0px; margin:0px;\"><img src=/pict/"+Url+" border=0></body>");
  newWindow.document.close();
}