function nowPlayingTag(props) {
	var tag = '<iframe name="np_banner" frameborder="0" align="top,left" marginheight="0" marginwidth="0" scrolling="no" width="'+props.width+'" height="'+props.height+'" src="http://www.tunegenie.com/banner/'+props.station+'/?w='+props.width+'&h='+props.height+'&bg='+props.bgcolor.replace('#', '')+'&txt='+props.textcolor.replace('#', '');

    if (props.stationmsg != null && props.stationmsg != "" && props.stationmsg != undefined) {
	tag = tag + '&msg='+props.stationmsg;
    }

	tag = tag + '"></iframe>';
	document.write(tag);
}

