function onLoad() {
	val1 = 0;
	val2 = 0;
	try { val1 = document.getElementById("ll").offsetHeight; } catch(e) { val1 = document.getElementById("rl").offsetHeight; }
	try { val2 = document.getElementById("lr").offsetHeight; } catch(e) { val2 = document.getElementById("rr").offsetHeight; }
	max = 0;
	if(val2 > val1) {
		max = val2-val1;
		try {
			document.getElementById("llf").style.height = max+"px";
		} catch(e) {
			document.getElementById("rlf").style.height = max+"px";
		}
	} else {
		max = val1-val2;
		try {
			document.getElementById("lrf").style.height = max+"px";
		} catch(e) {
			document.getElementById("rrf").style.height = max+"px";
		}
	}
}

function player(movie) {
	my_window = window.open ("", "mywindow1", "status=1,width=350,height=300");
	var player = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">'+
'<html>'+
'<head>'+
'<title>Windows Media Video</title>'+
'<meta http-equiv="content-type" content="text/html; charset=iso-8859-2">'+
'</head>'+
'<body>'+
'<div>'+
'<object type="video/x-ms-wmv" data="'+movie+'" width="320" height="260">'+
'<param name="src" value="'+movie+'"><param name="autostart" value="false"><param name="controller" value="true"></object>'+
'</div>'+
'</body>'+
'</html>';
	my_window.document.write(player);
}

