
function flash(width,height,url) {
	document.writeln("  <OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" WIDTH=\""+width+"\" HEIGHT=\""+height+"\" id=\"mojprofil\">"); 
	document.writeln("	<PARAM NAME=\"movie\" VALUE=\""+url+"\">"); 
	document.writeln("    <PARAM NAME=\"bgcolor\" VALUE=\"#FFFFFF\">");
	document.writeln("    <EMBED src=\""+url+"\" bgcolor=\"#FFFFFF\" WIDTH=\""+width+"\" HEIGHT=\""+height+"\" NAME=\"flash_dekoration\" TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\"></EMBED>");
	document.writeln("  </OBJECT>");
}

function SwfSize(_height, _id){
	var _height = _height;
	var _id = _id;
	
	updateObject('movieFlashEmbeded_',_id,_height);
	updateObject('movieFlash_',_id,_height);
	
	
}

function updateObject(prefix,_id,_height){
	
	var movie=doc.getElementById(prefix+_id);	
	if (movie!=null){	
		movie.height=_height;
	}
}
