function Background_Sound( src_file ) {
  if( Get_Cookie( 'backgroundsound' ) ) {
	document.write( '<embed type="audio/mpeg" src="', src_file, '" width="144" height="23" autostart="false" loop="false" hidden="false" controls="console"></embed>' );
  }
  else {
	document.write( '<embed type="audio/mpeg" src="', src_file, '" width="144" height="23" autostart="true" loop="false" hidden="false" controls="console"></embed>' );
	//document.write( '<embed type="audio/mpeg" src="', src_file, '" width="0" height="0" autostart="true" loop="false" hidden="true"></embed>' );
	Set_Cookie( 'backgroundsound', 'visited', '', '/', '', '' );
  }
}

