// JavaScript Document
// <meta http-equiv="Content-Type" content="text/html; charset=windows-1251">

isNS = (navigator.appName == 'Netscape');
isIE = (navigator.appName.indexOf('Microsoft') != -1);
isOP = (navigator.appName == 'Opera');
ns4 = (document.layers);
ie4 = (document.all && !document.getElementById);
ie5 = (document.all && document.getElementById);
ns6 = (!document.all && document.getElementById);

function crawler() {
	if (window.name!='main_page' && !((self.innerHeight == 0) && (self.innerWidth == 0))) top.location.replace('/');
}
function calcHeight(koi) {
	var the_height=document.body.scrollHeight;
	var obj = parent.document.getElementById(koi);
	obj.style.height = (!isNS && !isOP) ? the_height : the_height+'px';
}

function change_pic(pic_id, pic_src) {
  var obj = document.getElementById(pic_id);
  obj.src = pic_src;
}
function calcHeight_admin(koi) {
	var the_height=document.body.scrollHeight;
	var obj = parent.document.getElementById(koi);
	obj.style.height = (!isNS && !isOP) ? the_height : the_height+'px';
}
function goHome(l) {
	top.location.replace('/index.php?lang='+l);
}