// JavaScript Document
<!--

function insertTwitter() {

	new TWTR.Widget({
  						version: 2,
  						type: 'profile',
 					 	rpp: 3,
  						interval: 6000,
  						width: 240,
  						height: 280,
  						theme: {
    						shell: {
      							background: '#333333',
      							color: '#ffffff'
    						},
    						tweets: {
      							background: '#000000',
      							color: '#ffffff',
      							links: '#4aed05'
    						}
  						},
  						features: {
   			 				scrollbar: false,
    						loop: false,
    						live: false,
    						hashtags: true,
    						timestamp: true,
    						avatars: false,
    						behavior: 'all'
  						}
					}).render().setUser('Doctid').start();
}					
			
									
function insertMusicPlayer() {
	var so = new SWFObject("flashmp3player.swf", "player", "240", "300", "9"); // Location of swf file. You can change player width and height here (using pixels or percents).
	so.addParam("quality", "high");
	so.addVariable("content_path","mp3"); // Location of a folder with mp3 files (relative to php script).
	so.addVariable("color_path","default.xml"); // Location of xml file with color settings.
	so.addVariable("script_path","flashmp3player.php"); // Location of php script.
	so.write("player");
}	
//-->
