//Browser safe (IE) flash writer
function flWrite(path,pathVars,quality,bgColor,width,height,name,align,scriptAccess,type,wmode)
{
	flString =  "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\""+width+"\" height=\""+height+"\" id=\""+name+"\" align=\""+name+"\">";
	flString += "<param name=\"allowScriptAccess\" value=\""+scriptAccess+"\" /><param name=\"movie\" value=\""+path+"?"+pathVars+"\" /><param name=\"quality\" value=\""+quality+"\" /><param name=\"bgcolor\" value=\""+bgColor+"\" /><param name=\"wmode\" value=\""+wmode+"\" />";
	flString += "<embed wmode=\""+wmode+"\" src=\""+path+"?"+pathVars+"\" quality=\""+quality+"\" bgcolor=\""+bgColor+"\" width=\""+width+"\" height=\""+height+"\" name=\""+name+"\" align=\""+align+"\" allowScriptAccess=\""+scriptAccess+"\" type=\""+type+"\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />";
	flString += "</object>";
	
	document.write(flString);
}

function pageSize(pagina)
{
	switch (pagina) 
	{
		case "Galerie-foto":
			document.getElementById("content-bottom-despre").style.height = (document.getElementById("caseta2-despre").offsetHeight) + "px";
			break;
		case "home":
			break;	
		default:
				if (document.getElementById("caseta2-despre").offsetHeight >= document.getElementById("caseta1-home").offsetHeight)
					document.getElementById("content-bottom-despre").style.height = (document.getElementById("caseta2-despre").offsetHeight) + "px";
				else
					document.getElementById("content-bottom-despre").style.height = (document.getElementById("caseta1-home").offsetHeight) + "px";	
				break;
	}	
}
