<!--
function getParameter(paramName) {
	var currentUrl = window.location.search;
	var strBegin = currentUrl.indexOf(paramName) + (paramName.length+1);
	var strEnd = currentUrl.indexOf("&",strBegin);
	if (strEnd==-1) {
		strEnd = currentUrl.length;
	}
//	alert ("paramName=" + paramName + " begin=" + strBegin + " end=" + strEnd);
//	alert ("param value=" + currentUrl.substring(strBegin, strEnd);
	return currentUrl.substring(strBegin,strEnd);
}

function openMovie() {
	window.open("movie.htm",
					"_blank",
					"toolbar=no, " +
					"location=no, " +
					"directories=no, " +
					"status=no, " +
					"menubar=no, " +
					"titlebar=no, " +
					"statusbar=no, " +
					"scrollbars=no, " +
					"resizable=no, " +
					"copyhistory=no, " +
					"width=340, " +
					"height=280")
}
		
-->

