function loadszmtag(szmofferid,szmcode,szmcomment)
{
	<!--HTTP oder HTTPS?-->
	var szmprotocol = window.location.protocol
	<!--Definition des DIV-Tags-->
	var szmdiv = document.getElementById('szmpixel');
	<!--Definition eines neuen IMG-Elements-->
	var szmimg = document.createElement('img');
	szmimg.src = szmprotocol+'//'+szmofferid+'.ivwbox.de/cgi-bin/ivw/CP/'+szmcode+';'+szmcomment+'?r='+escape(document.referrer)+'&d='+(Math.random()*100000);
	<!--Platzierung des IMG-Elements "szmimg" im DIV-Element "szmtag"-->
	szmdiv.appendChild(szmimg);
	while (szmdiv.firstChild) szmdiv.removeChild(szmdiv.firstChild);
}
