//トップポップアップ

function openMovie() {
	var myWidth = 720;
	var myHeight = 480;
	var myURL = "popup.html"

	var screenW = screen.availWidth;
	var screenH = screen.availHeight;
	var posLeft = (screenW - myWidth)/2;
	var posTop = (screenH - myHeight)/2;
	var pop;

	pop=window.open(myURL,"main",'width='+myWidth+',height='+myHeight+',top='+posTop+',left='+posLeft+',menubar=no,scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,status=no');
}

//ポップアップクローズ

function closeMovie() {
	window.close();
}
