// JavaScript Document
function doVideo(strURL, width, height) {
	var URL = strURL + '&W='+width+'&H='+height;
	var params = "status=no,scrollbars=no,toolbar=no,width=" + width + "px,height=" + (height+15) + "px";
	var awindow = window.open(URL,"map",params);
}
