// =========== Kleinigkeiten for BORCHARDT & Partner - Architekten
// =========== created by JaryK
// =========== Studio SYNAPSE


//=============================================================
//=====   TEST IE6 a IE5 PROHLIZECE
//=============================================================

	//-------------------------------------------------------------
	//--- pokud se pouziva IE5 nebo IE6 nastavi se promenna
	//--- fuckingIE na true
	//-------------------------------------------------------------
	var Bprohlizec = navigator.appName.toLowerCase();
    var Bagent = navigator.userAgent.toLowerCase();
    var Bverze = navigator.appVersion.toLowerCase();
	var fuckingIE = false;
	var fuckingIE7 = false;
	if((Bverze.indexOf("msie 6")!=-1) || (Bverze.indexOf("msie 5")!=-1)) fuckingIE = true;
	if(Bverze.indexOf("msie 7")!=-1) fuckingIE7 = true;


//=============================================================
//=====   Frames Control
//=============================================================

	//-------------------------------------------------------------
	function get_mainframe_content(){
		var checkTxt = parent.musicbox.location.href.substring(parent.musicbox.location.href.lastIndexOf('?') + 1);
		if(checkTxt != 'nocheck'){
			var contentFile = parent.location.href.substring(parent.location.href.lastIndexOf('?') + 1);
			parent.content.location = contentFile;
		}
	}

	//-------------------------------------------------------------
	function check_musicbox(){
		if(!parent.musicbox) {
			var thisLocation = this.location.href.substring(this.location.href.lastIndexOf('/') + 1);
			if(!thisLocation) thisLocation = "nuadboran-home.html";
			parent.location = "nuad-boran.html?" + thisLocation;
		}
	}

	//-------------------------------------------------------------
	function switch_music(){
		if(parent.musicbox) {
			if(parent.musicbox.location.href.substring(parent.musicbox.location.href.lastIndexOf('/') + 1) == 'nuadboran-musicbox.html' || parent.musicbox.location.href.substring(parent.musicbox.location.href.lastIndexOf('/') + 1) == 'nuadboran-musicbox.html?nocheck'){
				parent.musicbox.location = "nuadboran-musicbox-no.html";
			} else {
				parent.musicbox.location = "nuadboran-musicbox.html?nocheck";
			}
		}
	}



//=============================================================
//=====   OTEVIRANI EXTERNICH OKEN
//=============================================================

	//-------------------------------------------------------------
	function ext_window(adresa){
		w1 = window.open(adresa,"noveokno");
		w1.focus();
	}


//=============================================================
//=====   Oprava dementniho IE6
//=============================================================

	//-------------------------------------------------------------
	function gogo_ie6_fix(){
		document.body.style.height=document.documentElement.scrollHeight + 'px';
	}


// =========== Kleinigkeiten for Prague Patchwork Meeting === END
