// JavaScript Document
var my_window;
var videoEmbed = "";

function setPopup(arg) {
	//alert("aaa");
	//$.jqURL("myfile.html", {w:400,h:400,wintype:'_blank'});
	videoEmbed = arg;
	
	my_window = window.open("templates/popup.htm", "my_window", "status=0,toolbar=0,width=425,height=344,resizable=0");
	//my_window.document.write("<body style='margin:0px;'>"+arg+"</body>");
	//my_window.document.getElementById("video").innerHTML = "aaa";
	//alert(my_window.document);
}

function getPopupContent() {
	my_window.document.getElementById("video").innerHTML = videoEmbed;
}

