var base = 'http://www.zaycev.fm';
var type = 'big';
var skin = '1';
var skin_path = '/media/players/xml/';

function zaycevfmGetPlayer(type, skin, _skin_path){
	if(_skin_path == undefined){
		_skin_path = skin_path;
	}
	var swf = base + '/media/players/player_'+type+'.swf';
	var player = '<OBJECT width="430" height="150"><PARAM name="movie" value="'+swf+'"></PARAM><PARAM name="wmode" value="transparent"></PARAM><PARAM name="allowFullScreen" value="false"></PARAM><param name="bgcolor" value="transparent" /><PARAM name="flashvars" value="urlSkin='+base+_skin_path+skin+'.xml"></PARAM><EMBED src="'+swf+'" type="application/x-shockwave-flash" wmode="transparent" width="430" bgcolor="transparent" height="150" allowFullScreen="false" flashvars="urlSkin='+base+_skin_path+skin+'.xml"></EMBED></OBJECT>';
	return player;
}

function zaycevfmGetBanner(type, banner_skin, player_skin){

	var player_type = '';
	var skin_path = '/media/zayinteractive/xml/';
	var _wrap_start = ''; var _wrap_end = '';
	type = type.replace( 'x' ,'');

	switch(type){
		case '100100':
		case '72890':
		default:
			player_type = 'big';
			bg = base+'/media/zayinteractive/'+type+'/'+banner_skin+'.png';
			_wrap_start = '<div class="zaycevfm_zayinteractive_72890" style="width:728px;height:90px;background: url(\''+bg+'\') top left no-repeat;position:relative;"><a class="zaycevfm_link" href="http://www.zaycev.fm" style="display:block; position:absolute;top:0; right: 0; width:728px; height:90px; border: none; text-decoration:none">&nbsp</a><div class="zaycevfm_zayinteractive_player" style="position:absolute;left: 30px;top: -16px;">';
			_wrap_end = '</div></div>';
			break;

		case '200200':
		case '240400':
			player_type = 'small_1';
			break;

		case '46860':
			player_type = 'small_2';
			break;

		case '600200':
			player_type = 'medium';
			break;

		case '8831':
			player_type = 'onebutton';
			break;	
	}

	return _wrap_start + zaycevfmGetPlayer(player_type, player_skin, skin_path) + _wrap_end;
}
