var bo_ns_id = 0;
function startIeFix() {  
	if(isIE()) {    
		document.write('<div id="bo_ns_id_' + bo_ns_id + '"><!-- ');  
	}
}
function endIeFix() {  
	if(isIE()) {    
		document.write('</div>');    
		var theObject = document.getElementById("bo_ns_id_" + bo_ns_id++);    
		var theCode = theObject.innerHTML;  
		if (theCode.indexOf("</object>") != -1) {
				var idx = theCode.indexOf("</object>");
		}
		else {
				var idx = theCode.indexOf("</OBJECT>");
		}
		theCode = theCode.substring(4 ,9 + idx);   
		document.write(theCode);  
	}
}
function isIE() {  
	var strBrwsr = navigator.userAgent.toLowerCase();  
	if(strBrwsr.indexOf("msie") > -1 && strBrwsr.indexOf("mac") < 0) {    
		if(parseInt(strBrwsr.charAt(strBrwsr.indexOf("msie")+5)) < 6) {      
			return false;    
		}    
		if(strBrwsr.indexOf("win98") > -1 || strBrwsr.indexOf("win 9x 4.90") > -1 || strBrwsr.indexOf("winnt4.0") > -1 || strBrwsr.indexOf("windows nt 5.0") > -1) {
			return false;    
		}    
		return true;  
	}
	else {    
		return false;  
	}
}

function rewind() {
	//$$('img[id=rnd_num]').setProperty('src', '/includes/rnd_image.php?n=' + $random(100000, 999999));
	ngrjQ("img[id=rnd_num]").attr("src", '/includes/rnd_image.php?n=' + Math.floor(Math.random()*999999));
}

function popUpPic(w,h,link) {
	w = parseInt(w);
	h = parseInt(h);
	var new_window = window.open('','name','scrollbars,height=' + (h+70) + ',width=' + (w+50) + ''); 
	new_window.document.write('<html><head><title>Фото</title>');
	new_window.document.write('</head><body>');
	new_window.document.write('<p align=center><img src="' + link + '" border=0 onclick="self.close();" style="cursor:pointer; cursor:hand;" /></p>');
	new_window.document.write('<p align=center><a href=\"javascript:self.close()" style="font-size:12px;color:#0033FF;font-family:Arial">Закрыть окно</a></p>');
	new_window.document.write('</body></html>');
	new_window.document.close();
    return false;
}
