<!--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function ikonki_DoFSCommand(command, args) {
  var ikonkiObj = InternetExplorer ? ikonki : document.ikonki;
}
// Hook for Internet Explorer  
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&  
   navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
 document.write('<script LANGUAGE=VBScript\> \n');
 document.write('on error resume next \n');
 document.write('Sub ikonki_FSCommand(ByVal command, ByVal args)\n');
 document.write('  call ikonki_DoFSCommand(command, args)\n');
 document.write('end sub\n');
 document.write('</SCRIPT\> \n');
}

function sendToFlash(id)
{
document.foto.SetVariable('area',id);document.foto.SetVariable('load_js','1');return false;
}
function sendIdToFlash(id)
{
document.foto.SetVariable('id', id);document.foto.SetVariable('load_id','1');return false;
}
//-->



function hide(type, src){
	obj = document.getElementById(src);
	
	if(type == "off"){
		obj.style.display = "none";
	} else if(type == "on"){
		obj.style.display = "";
	}
	return false;
}
function hide_on(id){
	var i=1;
	var obj = document.getElementById(i);
	//alert(obj);
	while (obj != undefined) {
		hide('off', i);
		if (id == i) hide('on', id);
		i++;
		obj = document.getElementById(i);
	}
	//alert(i);

}

