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)
}
$(document).ready(function(){
	var string1 = "herolds";
	var string2 = "@";
	var string3 = "t-online.hu";
	var string4 = string1 + string2 + string3;
	$('.level').html("<a href=" + "mail" + "to:" + string4 + ">" + string4 + "</a>");
});
