function loadjscssfile(filename, filetype){
 if (filetype=="js"){ //if filename is a external JavaScript file
  var fileref=document.createElement('script')
  fileref.setAttribute("type","text/javascript")
  fileref.setAttribute("src", filename)
 }
 else if (filetype=="css"){ //if filename is an external CSS file
  var fileref=document.createElement("link")
  fileref.setAttribute("rel", "stylesheet")
  fileref.setAttribute("type", "text/css")
  fileref.setAttribute("href", filename)
 }
 if (typeof fileref!="undefined")
  document.getElementsByTagName("head")[0].appendChild(fileref)
}


function clearSearch(myObj) {
	if(myObj.value == 'Keresés az oldalon') {
		myObj.value = ''; 
		myObj.style.color = 'black'; 
		myObj.style.fontStyle = 'normal';
	}
}

function setSearch(myObj) {
	if(myObj.value == '') {
		myObj.value = 'Keresés az oldalon';
		myObj.style.color = '#666666';
		myObj.style.fontStyle = 'italic';
	}
}

// FLASH DETECT
if(!FlashDetect.installed){
		if(confirm('Az oldal flash elemeket tartalmaz, megtekintésükhöz ingyenes és azonnal telepíthető\nFlash Player szükséges, mellyel Ön nem rendelkezik.\nLe akarja tölteni most?')) 
			var mywin=dhtmlwindow.open("getFlashPlayer", "iframe", "http://get.adobe.com/flashplayer/", "Adobe Flash Player", "width=700px,height=450px,resize=1,scrolling=1,center=1", "recal")
}

