// JavaScript Document
var width = 700;
var height= 1300;

var left = (screen.width - width) / 2;
var top = (screen.height - height) / 2;

var option = "left=" + left + ",top=" + top + ",width=" + width + ",height=" + height + ",resizable=no,status=no,menubar=no,toolbar=no,scrollbars=yes";

function Open_the_window1(){
	window.open("./top_popup/index.html","new",option);
}

var init = function(){
	var img1 = document.getElementById('img1');
	var openwindow1 = function(){
		Open_the_window1()
	};
	dom.addListener(img1,"click",openwindow1);
};
dom.addListener(window,"load",init);

