Javascript-форум (https://javascript.ru/forum/)
-   Элементы интерфейса (https://javascript.ru/forum/dom-window/)
-   -   Помогите реализовать кнопки. (https://javascript.ru/forum/dom-window/62117-pomogite-realizovat-knopki.html)

DenjBoss 25.03.2016 14:37

Помогите реализовать кнопки.
 
Есть код для одной кнопки. Которая отлично работает. Проблема в том, что я не могу сделать ещё одну кнопку рядом, чтобы при нажатии на нее открывалось другое окно. Вот код. Помогите пожалуйста.
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf8'>
<link rel="stylesheet" href="http://sergey-oganesyan.ru/wp-content/uploads/2014/01/stylepromer.css" type="text/css" />
<title>Всплывающее окно на javascript - Seo блог sergey-oganesyan.ru</title>
<style type="text/css">
	
	#wrap{
		display: none;
		opacity: 0.8;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		padding: 16px;
		background-color: rgba(1, 1, 1, 0.725);
		z-index: 100;
		overflow: auto;
	}
	
	#window{
		width: 400px;
		height: 400px;
		margin: 50px auto;
		display: none;
		background: #fff;
		z-index: 200;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		padding: 16px;
	}
	
	.close{
		margin-left: 364px;
		margin-top: 4px;
		cursor: pointer;
	}
	
</style>
</head>
<body>
		<script type="text/javascript">
			function show(state){
					document.getElementById('window').style.display = state;			
					document.getElementById('wrap').style.display = state; 			
			}
		</script>
					<!-- Задний прозрачный фон-->
		<div onclick="show('none')" id="wrap"></div>

					<!-- Само окно-->
			<div id="window">
						 <!-- Картинка крестика-->
				<img class="close" onclick="show('none')" src="http://sergey-oganesyan.ru/wp-content/uploads/2014/01/close.png">
				<!-- ТЕКСТ В ОКНЕ -->
				<center>	
					KEK
				</center>
			</div>
		<center><button class="myButton" onclick="show('block')" id="kek">Показать окно</button></center>	
		<center><button class="myButton" onclick="show('block')" id="wrap2">Показать окно 2</button></center>
</body>
</html>


Часовой пояс GMT +3, время: 03:40.