// JavaScript Document

 function openPopup(img,text,windowWidth,windowHeight) {
	 popup = window.open("about:blank","popup","width=1,height=1,left=3000,top=3000");
	 popup.close();
     moveX = (screen.availWidth / 2) - (windowWidth / 2);
     moveY = (screen.availHeight / 2) - (windowHeight / 2);
	 url = encodeURI("/popup/index.html?img=" + img + "&text=" + text)
	 popup = window.open(url,"popup","width=" + windowWidth + ",height=" + windowHeight + ",left=" + moveX + ",top=" + moveY);
	 popup.focus();
 }
