function open_menu() {
	newWindow = window.open("","foto",'width=320, height=240');
	newWindow.document.open();
	newWindow.document.write('<html>\n\t<title>\n\t\t Menu \n\t</title>\n');
	newWindow.document.write('<LINK rel=\"stylesheet\" href=\"main.css\" type=\"text/css\">');
	newWindow.document.write('\t<body>\n\t\t');  
	newWindow.document.write('<p align="center"><font size="+1"> добавить в корзину<br>');
	newWindow.document.write('</font>открыть корзину<br></p>');
	newWindow.document.write('</p>'); 
	newWindow.document.write('\t</body>\n</html>');
	newWindow.document.close();
	newWindow.focus();
}

