// JavaScript Document

function loadFlash(flashWidth,flashHeight,flashName)
{
	AC_FL_RunContent('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0',
										'width',flashWidth,
										'height',flashHeight,
										'align','middle',
										'src',flashName,
										'quality','high',
										'bgcolor','#fffff',
										'name','foo',
										'allowscriptaccess','always',
										'wmode','transparent',
										'pluginspage','http://www.macromedia.com/go/getflashplayer',
										'movie',flashName);
	
}

function loadTitle(text1,text2,col)
{
                loadFlash(400,35,"flash/twoPartTitle?text1=" + text1 + "&text2=" + text2 + "&col=" + col);
}

function loadTitleSmall(text1,text2,col)
{
                loadFlash(400,25,"flash/twoPartTitleSmall?text1=" + text1 + "&text2=" + text2 + "&col=" + col);
}

function loadTitleTiny(text1,text2,col)
{
                loadFlash(400,18,"flash/twoPartTitleTiny?text1=" + text1 + "&text2=" + text2 + "&col=" + col);
}

function loadTitleNarrow(text1,text2,col)
{
                loadFlash(300,18,"flash/twoPartTitleTinyNarrow?text1=" + text1 + "&text2=" + text2 + "&col=" + col);
}

function loadTitleNarrow2(text1,text2,col)
{
                loadFlash(200,18,"flash/twoPartTitleTinyNarrow2?text1=" + text1 + "&text2=" + text2 + "&col=" + col);
}

function setDisplayMap(which)
{
	if(which==1)
	{
		newSrc="http://wikimapia.org/#lat=35.8889458&lon=14.4983697&z=17&l=0&ifr=1&m=h"
	}
	else
	{
		newSrc="http://wikimapia.org/#lat=35.8893065&lon=14.4981819&z=18&l=0&ifr=1&m=b"
	}
	document.getElementById("displayMap1").innerHTML="<iframe id=\"mapFrame\" src=\"" + newSrc + "\" width=\"566\" height=\"340\" frameborder=\"0\"></iframe>";
	
	return false;
}

