//LC AdBanner Schnittstelle
function loadBanner(banner,href){
	// add code here to place banner on your player page
	// and add link to it.
	// "banner" - the URL of the banner ad image
	// "href" - the click-thru URL

	var prompt = "banner: " + banner;
	prompt += "\nhref: " + href;
	alert(prompt);

	// when synchronizing banners, think of these system options for banner format types
        //1) Determine if click Thru URL's are defined.
        //2) HTML and JS banners have no click thru URLs, place in appropriate banner tags, e.g. iframes
        //3) Another banner format - SWF's. SWF's contain no clickThru URL, can either be placed in iframe or in Object tags if an extension of .SWF is determined
	//4) The last banner option is an image.  Place in your appropriate tag.

}


