	function Navigate(url) {
		window.open(url,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=890,height=570');
	}

	function NavigateWithFixSize(url,width,height) {
		window.open(url,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=' + width + ',height=' + height);
	}

	function PopupImage(adr) {
		window.open(adr,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=890,height=570');
	}
	
	function FindObject(n, d) { 	     
	  	var p,i,x;
	
	  	if (!n) {
	     		return null;
	     	}
	  
	  	if (!d) {
	     		d=document; 
	
		  	// W3ORG (NS6+ IE5+ )
			if (d.getElementById) {
		          x = d.getElementById(n); 
		          	if (x) {
		               return x;
				}
		     }
		
		  	if ((p = n.indexOf("?")) > 0 && parent.frames.length) {
				d = parent.frames[n.substring(p+1)].document; 
				n = n.substring(0,p);
		  	}
		  
		  	// IE4
		  	if (!(x = d[n]) && d.all)  {
		     		x = d.all[n]; 
			}
		  
		  	for (i = 0; !x && i < d.forms.length; i++) {
		          x = d.forms[i][n];
			}
		  
		  	for (i = 0; !x && i < d.images.length; i++) {
		          x = d.images[n];
			}
		
			// NS4
		  	for (i = 0; !x&&d.layers && i < d.layers.length; i++) {
		     		x = findObj(n, d.layers[i].document); 
		     	}
	     	
			return x;
		}
	}	

