var triger = new Array();

function menu_click(idname) {
	lay = document.all(idname);
	document.all('pd_menuA').style.visibility = 'hidden';
	document.all('pd_menuB').style.visibility = 'hidden';
	document.all('pd_menuC').style.visibility = 'hidden';
	if(idname){
		lay.style.visibility = 'visible';
		triger[idname] = 0;
		lay.focus();
	}
}

function menu_over(idname) {
	if(idname){
		triger[idname] = 1;
	}
}

function menu_out(idname) {
	lay = document.all(idname);
	if(triger[idname] == 1){
		lay.style.visibility = 'hidden';
		triger[idname] = 0;
	}
}

function interlocutor(html) {
	window.open(html,"Interlocutor","width=500,height=500,scrollbars=yes,location=no,directories=no");
}

function view_image(pict_id) {
	var NW = window.open("","bookImage","width=520,height=520,scrollbars=no,location=no,directories=no");
	NW.document.writeln('<html>');
	NW.document.writeln('<body>');
	NW.document.writeln('<div align="center" onclick="window.close()">');
	NW.document.writeln('<img src="img/books/b_' + pict_id + '.jpg">');
	NW.document.writeln('</div>');
	NW.document.writeln('</body>');
	NW.document.writeln('</html>');
}
