function framePage(Width, LeftPage, RightPage) {
	var Right1Page = 'footer.htm';
	var browser=navigator.appName
	//var LeftPage, RightPage, Width
	top.document.open
	top.document.write("<html>")
	top.document.write("<head>")
	top.document.write("<title>")
	if(browser!="Netscape") {
		top.document.write("АННА АХМАТОВА. &laquo;Царственное слово&raquo; ")
	}
	top.document.write("</title>")
	top.document.write("</head>")
	if(browser=="Netscape") {
		parent.top.document.write("<frameset framespacing='0' border='false' frameborder='0' rows='29,*,20'>")
	}
	else {
		parent.top.document.write("<frameset framespacing='0' border='false' frameborder='0' rows='18,*,20'>")
	}	
	
	top.document.write("	<frame name='header' scrollbar='no' scrolling='no' src='menubar.htm'>")
	top.document.write("	<frameset scrollbar='auto' frameborder='0' cols='" , Width  , ",*,20'>")
	top.document.write("		<frame name='left' src='" , LeftPage , "'>")
	top.document.write("		<frame name='right' src='" , RightPage , "'>")
	top.document.write("		<frame name='right1' src='" , Right1Page , "'>")
	top.document.write("	</frameset>")
	top.document.write("	<frame name='footer' scrollbar='no' scrolling='no' src='footer.htm'>")
	top.document.write("</frameset>")
	top.document.write("</html>")
	top.document.close
}


/* Оформление примечаний в отдельном окне */

function cmmnt(text) {
	newwindow=window.open("blank.htm","nw","menubar=yes,resizable=yes,width=400,height=300");
	newwindow.document.write('<html><head><meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1251"><title>Примечание</title></head><body bgcolor=lightblue><table width=100% height=100%><tr><td>'+text+'</td></tr></table></body></html>');
	newwindow.focus();
}

function pageWithoutFrames() {
	top.document.title = document.title;
	var menu="<table bgcolor='darkblue' width='100%'><tr><td>&nbsp;"+
	"<a href='http://www.akhmatova.ru/' target='_top'><font color='yellow' face='Arial'><B>"+
	"Анна Ахматова &nbsp;&laquo;Царственное Слово&raquo;"+
	"</B></font></a></td></tr></table><br>";
	//alert(top.frames.length);
	if (top.frames.length!=5) {
		document.write(menu);
		return;
	}
}
