
document.getElementById('limitwidgetdiv').innerHTML =
	"<img id=\"limit_product_image\" src=\"\">"
	+"<img src=\"http://www.24limit.de/ads/scraper_widgetframe.gif\" style=\"border:0px; position:absolute; top:0px; left:0px;\" alt=\"Frame\">"	
	+"<img src=\"http://www.24limit.de/ads/widgetlogo_110.gif\" style=\"border:0px; position:absolute; top:550px; left:5px;\" alt=\"Frame\">	"
	+"<div id=\"limit_description\">Produktbeschreibung</div>"
	+"<div id=\"limit_price\">nur Heute: 999&euro;</div>"
	+ document.getElementById('limitwidgetdiv').innerHTML;

document.getElementById('limit_description').innerHTML = '<b>' + limit_fulltitle + '</b><br><br>' + limit_secondtitle;
document.getElementById('limit_price').innerHTML = 'nur Heute: <b>' + limit_price + ' &euro;</b>';
document.getElementById('limit_product_image').src = 'http://www.24limit.de/' + limit_smallpicture;

if(limit_small_pict_x == 80){
	document.getElementById('limit_product_image').style.top = Math.round(206+(80-limit_small_pict_y)/2) + 'px';
}
else{
	document.getElementById('limit_product_image').style.left = Math.round(19+(80-limit_small_pict_x)/2) + 'px';
}

iLimitPriceView = 1;

function setLimitPrice(){
	if(iLimitPriceView < 3){
		document.getElementById('limit_price').innerHTML = 'nur Heute: <b>' + limit_price + ' &euro;</b><br><br>UVP: '
			+ limit_uvp + ' &euro';
	}
	else{
		iLimitPriceView = 0;
		document.getElementById('limit_price').innerHTML = limit_save + ' &euro; sparen!<br><br>UVP: ' + limit_uvp + ' &euro';
	}
	iLimitPriceView++;
	window.setTimeout("setLimitPrice()",1800);
}

setLimitPrice();
