function get_offer()
{
	var width=600;
	var height=150;
	var ret = '<object width="'+width+'" height="'+height+'">';
	ret += '<param name="movie" value="http://static.myvip.com/offer.swf">';
	ret += '<param name="quality" value="high">';
	ret += '<param name="allowScriptAccess" value="always">';
	ret += '<embed allowScriptAccess="always" src="http://static.myvip.com/offer.swf" quality="high" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'">';
	ret += '</object>';
	
	return(ret);
}

function print_offer()
{
	document.write(get_offer());
}

function get_flvplayer(videoid,videourl,picurl,videodesc,autowidth,mode)
{
	var r=0.75;
	var width="480";
	var height="390";
	if(autowidth!="default")
	{
		if(autowidth==0)
		{
			width="100%";
			height="100%";
		}
		else
		{
			width=autowidth;
			height=Math.round(width*r)+30;
		}
	}
	var ret = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+width+'" height="'+height+'">';
	ret += '<param name="movie" value="http://static.myvip.com/embed.swf?videoid='+videoid+'&videourl='+videourl+'&picurl='+picurl+'&videodesc='+videodesc+'&mode='+mode+'&needxml=0">';
	ret += '<param name="quality" value="high">';
	ret += '<param name="allowFullScreen" value="true">';
	ret += '<param name="allowScriptAccess" value="always">';
	ret += '<embed src="http://static.myvip.com/embed.swf?videoid='+videoid+'&videourl='+videourl+'&picurl='+picurl+'&videodesc='+videodesc+'&mode='+mode+'&needxml=0" quality="high" allowFullScreen=true type="application/x-shockwave-flash" allowScriptAccess="always" width="'+width+'" height="'+height+'">';
	ret += '</object>';
	//var ret = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" height="350" width="550"><param name="movie" value="http://static.myvip.com/postcards/hu/86.swf"><param name="quality" value="high"><embed src="http://static.myvip.com/postcards/hu/86.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" height="350" width="550"></object>';
	return(ret);
}
function print_flvplayer(videoid,videourl,picurl,videodesc,autowidth,mode)
{
	document.write(get_flvplayer(videoid,videourl,picurl,videodesc,autowidth,mode));
}
