
function sError(){ return true; }
window.onerror = sError;

function music_status(_value)
{
	if( window.document.tdb_player )
	{
		// alert('Set in Flash: '+_value);
		window.document.tdb_player.SetVariable("SoundStatus",_value);
		// alert('OK');
	}
}
function play_sound(tit,fn)
{
	//alert('PlaySound');
	if( window.document.tdb_player )
	{
		//alert('Set in Flash:\nOtherSoundTitle: '+tit+'\nOtherSoundFile: '+fn);
		window.document.tdb_player.SetVariable("OtherSoundTitle",tit);
		window.document.tdb_player.SetVariable("OtherSoundFile",fn);
		//alert('OK');
	}
}

function imagewin(img,w,h)
{
	var win_x = (screen.width-w)/2;
	var win_y = (screen.height-h)/2;
	var wPARAM = '';
	wPARAM += 'left='+win_x+',top='+win_y+',width='+w+',height='+h;
	wPARAM += ',location=0,resizable=0,titlebar=0,directories=0,toolbar=0,menubar=0,scrollbars=0,status=no';
	
	var pw = window.open( 'index.php?page=image&img='+img, 'imgwin', wPARAM );
}