function openvideo(url,wid,hei,nomail){
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
	if (!nomail) hei = hei + 30;
	wOption = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width=" + wid + ",height=" + hei + ",left=" + (scWidthCenter - (wid / 2)) + ",top=" + (scHeightCenter - (hei / 2));
	window.open('http://streamer.webtvlite.fi/video/'+url,"video",wOption);
}
function sendvideo(url){
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
	hei = 290;
	wid = 500;
	wOption = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width=" + wid + ",height=" + hei + ",left=" + (scWidthCenter - (wid / 2)) + ",top=" + (scHeightCenter - (hei / 2));
	window.open('http://streamer.webtvlite.fi/sendvideo.php?id='+url,"sendvideo",wOption);
}