// init. variables
var wdth = 310; //screen.width*0.95;        // dimensions of the window with photo 
var hght = 340; //screen.height*0.9;
var wdth_navigator = wdth*0.98;           // dimensions of the Flash movieclip
var hght_navigator = hght*0.98;
	
function ShowPlayer() 
{

	// opening new window
	mywindow = window.open('http://forum.websound.ru/FORUM-UsersMusic/player/popup-contents.html', '' ,'width='+wdth+', height='+hght+', resizable=no, menubar=no, status=no, scrollbars=no, statusbar=no, toolbar=no');

	// placing the window
	mywindow.moveTo( (screen.width-wdth)/2, (screen.height-hght)/2 * 0.3 );
}