function player(url){
var newWin;
var w=392;
var h=372;
var x=(screen.width-w)/2;
var y=(screen.height-h)/2;
if(!newWin || newWin.closed){
	newWin = window.open(url, 'player', 'width='+w+', height='+h+', left='+x+', top='+y+', toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=yes');
	newWin.focus();}
else{name.focus();};
void(0);
}