var myPage;
function openQTWin(width,QTheight,movieName) {
	var imgHeight = 126;
	var QTheight = parseInt(QTheight);
	totalHeight = QTheight + imgHeight;
	if (!myPage || myPage.closed){
		var temp = 1;
	}else{
		myPage.close();
	}
	myPage = window.open('/flash/qtwin.php','_blank','width=' + width + ',height=' + totalHeight + ',status=yes,resizeable=no,scrollbars=no,toolbar=no');
	myPage.movieName=movieName;
	myPage.height=QTheight;
	myPage.width=width;
}