//Open Pop up Wiondw(Not Scroll)
function popupMovieWin(){
	wx = 700;
	wy = 450;
	html = 'movie.html';
	x = (screen.width  - wx) /2;
	y = (screen.height - wy) /2;
	movieWin = window.open(html,"movieWin","left="+x+",top="+y+",width="+wx+",height="+wy+",scrollbars=no,location=no,menubar=no");
	movieWin.focus();
}

//Open Pop up Wiondw
function popupWin_Scroll(html){
	wx = 780;
	wy = 700;
	x = (screen.width  - wx) /2;
	y = (screen.height - wy) /2;
	subWin = window.open(html,"subWin","left="+x+",top="+y+",width="+wx+",height="+wy+",scrollbars=yes,location=no,menubar=no");
	subWin.focus();
}


//For SpecListWindow
function myClose(){
	//window.opener .location.reload();
	window.close();
}
