function sendflashvar(shopnummer){
window.document.flashmovie.SetVariable("shopnummer", shopnummer);
}


function makezahl(stylesheet){
	pos = stylesheet.indexOf("px");
	zahl = eval(stylesheet.substring(0,pos));
	return zahl ;
	};	


function makestylesheet(zahl){
	stylesheet = Math.floor(zahl)+"px" ;
	return stylesheet ;
	};