<!--

function openMoviePopup(url)
{
	//window.hdnMovieName.value = arrHome[nSet][nValue];
	//window.document.getElementById("hdnMovieName").value = arrHome[nSet][nValue];
	var win = window.open(url, 'Movie', 'width=320, height=256, menubar=0, statusbar=0, toolbar=0, scroll=0');
	win.focus();
}
function openYoutubePopup(url, w, h)
{
	var win = window.open(url, 'Movie', 'width=' + w+', height='+h+', menubar=0, statusbar=0, toolbar=0, scroll=0');
	win.focus();
}
-->