New Window

Hi, I'm a new window and you just opened me by clicking an element. I am 650 pixels wide and 500 pixels high. My name is exampleWin.

You can close me using this code:

<script>

function closeWindow(){
	self.close()
}

var closeWin = document.getElementById("close");
closeWin.onclick = closeWindow;

</script>

Close window