/**
* @version 1.0.3
* @package moseasymedia 
* @copyright Copyright &copy; 2007, OCS Software Solutions
* @author Ozgur Cem Sen
* @email cms@ocssoftwaresolutions.com
* @link http://www.ocsoftwaresolutions.com || http://www.ocszone.com
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL .
*/


/**
 * javascript function for embedding the audio files with document.write(...)
 * @param string $embedString String to be included in the page. Associated player classes generate this string
 * @return whatever :)
 */
function embedObject (embedString) {

	document.write(embedString);
	return 1;
}

