/*
	VVV Ticketpoint javascript aanroep voor webmasters.

	By Michel Bijlsma / Co & Co Solutions B.V.

	(c) 2009 VVV Nederland.
*/

function DisplayTPBanner(liveData, referer, urlTarget, bannerType, divName)
{

	// Vars
	var theTPScript = '';
	var theTPBannerFile = '';
	var theTPFlashVars = '';
	var theTPBannerWidth = '';
	var theTPBannerHeight = '';

	
	// Banner type
	if (bannerType == 1)
	{
		theTPBannerFile = 'banner_468x60.swf';
		theTPBannerWidth = '468';
		theTPBannerHeight = '60';
	}

	if (bannerType == 2)
	{
		theTPBannerFile = 'banner_180x180.swf';
		theTPBannerWidth = '180';
		theTPBannerHeight = '180';
	}

	if (bannerType == 3)
	{
		theTPBannerFile = 'banner_170x200.swf';
		theTPBannerWidth = '170';
		theTPBannerHeight = '200';
	}


	// Params doorgeven
	theTPFlashVars = 'liveData: "' + liveData + '",  webID: "' + referer + '",  urlTarget: "' + urlTarget + '"';


	// Script
	theTPScript += '<div id="' + divName + '"></div>'; 
	theTPScript += '<script type="text/javascript">';
	theTPScript += 'var flashvars = { ' + theTPFlashVars + ' };';
	theTPScript += 'var params = {};';
	theTPScript += 'var attributes = {};';
	theTPScript += 'swfobject.embedSWF("http://www.vvv.nl/tpbanner/' + theTPBannerFile + '", "' + divName + '", "' + theTPBannerWidth + '", "' + theTPBannerHeight + '", "9.0.0","expressInstall.swf", flashvars, params, attributes);</script>'
	document.write(theTPScript);

}


