function logOut() {
	var logInOutForm = document.getElementById('logInOutForm');
	logInOutForm.login.value = ''
	logInOutForm.submit();
}
function showAdminMenu() {
	
	var adminMinuDiv = document.getElementById('adminMinuDiv');
	var c = (findElementPos(document.getElementById('adminMenuA')));
	adminMinuDiv.style.left = c.x+2;
	adminMinuDiv.style.top = c.y+10;
	
	if(adminMinuDiv.style.display == 'none') 
		adminMinuDiv.style.display = 'block';
	else
		adminMinuDiv.style.display = 'none';
	
	
}
function showlogOut() {
	var logInOutDiv = document.getElementById('logInOutDiv');
	var c = findElementPos(document.getElementById('logInOutA'));
	
	logInOutDiv.style.left = c.x+2;
	logInOutDiv.style.top = c.y+10;

	if(logInOutDiv.style.display == 'none') 
		logInOutDiv.style.display = 'block';
	else
		logInOutDiv.style.display = 'none';
}
function findElementPos(obj) {
	cur = {'x':0, 'y':0};
	if (obj.offsetParent) {
		while (obj.offsetParent) {
			cur.x += obj.offsetLeft;
			cur.y += obj.offsetTop;
			obj = obj.offsetParent;
		}
	}else if (obj.x) {
		cur.x += obj.x;
		cur.y += obj.y;
	}	
	return cur;
}
function showLeftSubMenu(id) {
	
	var menuDiv = document.getElementById('sm_'+id);
	
	var c = findElementPos(document.getElementById('smah_'+id));
	menuDiv.style.left = c.x-5;
	menuDiv.style.top = c.y-5;

	menuDiv.style.display = 'block';
}
function hideLeftSubMenu(id) {
	
	var menuDiv = document.getElementById('sm_'+id);
	menuDiv.style.display = 'none';
	
	
}
function printVersion(wight) {
	
	var wn = window.open('PagePrint', 'print', 'menubar=yes, toolbar=yes, scrollbars=yes, directories=yes, status=yes, resizable=yes, location=no, width=800 ,height=630');
	wn.document.open();
	wn.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><meta http-equiv="Content-Language" content="ru"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="STYLESHEET" type="text/css" href="css/main.css"><title>Культура СИ</title></head><body  style="padding:0 10 0 10">');
	wn.document.write('<img src="images/logoPrint.gif"><hr co style="border:1px solid #000000">');
	if(!wight)
		wight = 600;
	
	document.getElementById('printImg').style.display="none";
	var pageForPrint = document.getElementById('pageForPrint');
	var str = '<div style="width:'+wight+'">';
	var strt = pageForPrint.innerHTML;
	//strt = strt.replace(/<a /g, 'span ');
	//strt = strt.replace(/<\/a>/gi, '<\span>');
	strt = strt.replace(/просмотров: \d+/gi, '');
	str += strt;
	str +='</div>';

	wn.document.write(str) ;
	wn.document.close() ;
	
	document.getElementById('printImg').style.display="block";
}