
function open_win (path, width, height) {
 	width = (width * 1) + 10;
	height = (height * 1) + 10;
	player=window.open (path, 'WMP', 'menubar=no,toolbar=no,scrollbars=no,left=0,top=0,status=no,location=no,width=' + width + ',height=' + height);
	player.focus();
}
