var zobrazena="spacer";// no jako norsko norway
var dataVizitka="";
var Vizitka="none";

	function swapCountry(sCountry){
		if(sCountry == ''){
			//document.getElementById('countries').src = 'images/spacer.gif'; 
			if(Vizitka=="block"){
			document.getElementById('countrySelect').value = zobrazena;
			document.getElementById('countries').style.background = 'url(images/' + zobrazena + '.gif)';
			}else{
			document.getElementById('countrySelect').value = "select";
			 document.getElementById('countries').style.background = 'url(images/spacer.gif)';
			 }
			}
		else {
			//document.getElementById('countries').src = 'Images/' + sCountry + '.gif'; 
			document.getElementById('countries').style.background = 'url(images/' + sCountry + '.gif)';
			document.getElementById('countrySelect').value = sCountry;
			}		
	}// JavaScript Document

function zavrit(){
zobrazena="spacer";
Vizitka="none";
document.getElementById('countries').style.background = 'url(images/spacer.gif)';
document.getElementById('countrySelect').value = "select";
document.getElementById('vizitka').style.display = "none"; // zobrazi se nakliknuta polozka
return false; // odkaz neproklikne na href
}

function zobraz(polozka){
//document.getElementById('vizitka').style.height = "150px"; 
		switch (polozka) {
			case "cz": dataVizitka="<p style=\"margin:10px;\"><b>MOTOSCOOT a.s.</b><br />Těšínská 29<br />746 01 Opava<br /><b>tel./fax:</b> +420 553 623 044<br /><b>web:</b> <a href=\"http://www.motoscoot.cz\" target=\"_blank\">www.motoscoot.cz</a></p>";
		//	document.getElementById('vizitka').style.height = "200px"; 
			 break;
			case "sk": dataVizitka="<p style=\"margin:10px;\"><b>*ETOP* Trading a.s.</b>,<br />Streženická cesta 1023,<br />020 01 Púchov<br /><b>tel.:</b>+42 46 501 11<br /><b>web:</b> <a href=\"http://www.betka.sk\"target=\"_blank\">www.betka.sk</a></p>"; break;
			default: dataVizitka="<p style=\"margin:10px;color:#df1414;\">We have not yet official distributor in this country.<br />If you are interested Please do not hesitate and contact us <br /><a href=\"mailto:info@jawa-motor.com\">info@jawa-motor.com</a></p>";break;
}
document.getElementById('countries').style.background = 'url(images/' + polozka + '.gif)';
zobrazena = polozka;
document.getElementById('vizitkaobsah').innerHTML=dataVizitka;
document.getElementById('vizitka').style.display = "block"; // zobrazi se nakliknuta polozka
Vizitka="block";
return false; // odkaz neproklikne na href
}

