function showPopupFM()
{
	 width = 320;
	 height = 240;
	 options = 'toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no'; 
	 options += ',width=' + width + ',height=' + height;

	 if (window.screen)
	 {
		  windowLeft = (screen.availWidth - width)/2;
		  windowTop = (screen.availHeight - height)/2;
		  options += ',left=' + windowLeft + ',top=' + windowTop; 
	 }

	 win = window.open("../salsashows/demo/fighting_masters.html","",options);
	 win.opener = this;
	 win.focus();
}


