function tvwindopen( url, width, height){
	mywindow = window.open (url,
	'tvplay','menubar=0,resizable=0,location=0,status=0,scrollbars=0,width=' + width + ',height=' + height + '');
	mywindow.resizeTo(width,height+80) 
	mywindow.focus();
	return false;
} 