
	  var w=window;
	  var d=document;

	  function quoted(str) {
		  return (str != null) ? '"' + str + '"' : '""';
		  }

	  if (w.p_sc)
	  {
		var p_playing_url='http://www.blueforge.org/iplaying/my4.php'+
	                '?width='+w.p_playing_width+
					'&height='+w.p_playing_height+
					'&fontcolor='+w.p_font_color+
					'&bgcolor='+w.p_bg_color+
					'&bordercolor='+w.p_border_color+
					'&border='+w.p_playing_border+
					'&uid='+w.p_uid+
					'&style='+w.p_style
					;
	  } else
	  {
		var p_playing_url='http://www.blueforge.org/iplaying/my3.php'+
	                '?width='+w.p_playing_width+
					'&height='+w.p_playing_height+
					'&fontcolor='+w.p_font_color+
					'&bgcolor='+w.p_bg_color+
					'&bordercolor='+w.p_border_color+
					'&border='+w.p_playing_border+
					'&uid='+w.p_uid+
					'&style='+w.p_style
					;
	  }
		
	if (w.p_div_width)
		p_playing_url+='&divwidth='+w.p_div_width;

	d.write('<iframe  allowtransparency="true" background-color="transparent" name="now_playing_frame" vspace="0" hspace="0" width="'+w.p_playing_width+
				   '" height="'+w.p_playing_height+
				   '" frameborder="'+w.p_playing_border+
				   '" marginwidth="0" marginheight="0" allowtransparency="true"'+
				   ' scrolling="no" src='+quoted(p_playing_url)+'></iframe>');