/* JavaScript Document */
/* (c) 2010. Rosi - www.orosweb.hu */

$().ready(function() {
	$('.player_400').click(function() {
		$('#elado_div').modal({
			overlayClose:true,
			containerCss: {
				width: 400,
				height: 258,
				border: "0"
			}
	               });
		return false;
	});
});

function toggle(id)
 {
  var e = document.getElementById(id)
  e.style.display = e.style.display == "none" ? "" : "none";
 }

function PopUp(theURL,winName,features) { //v2.0
 window.open(theURL,winName,features);
}

function nagykep(targetURL, width, height)
 {
  var ablak;
  ablak = window.open("media/"+targetURL, "kep", "location=no,menubar=no,status=no,height="+height+",width="+width+"");
  ablak.moveTo((screen.width - ablak.document.width) / 2 - 20 , screen.height / 2 - 311);
  ablak.focus( );
 }

function whatCorrector() {  
  var replaces = 0;  
  var alltags = document.all ? document.all.tags("DIV") : document.getElementsByTagName("*");  
  for (i=0; i < alltags.length; i++) {  
    if (alltags[i].className == 'whateffect') {  
      while (alltags[i].innerHTML.indexOf('##'+'kukac##') != -1 && replaces < 10000) {  
        alltags[i].innerHTML = alltags[i].innerHTML.replace('##'+'kukac##', String.fromCharCode(64));  
        replaces++;  
      }  
    }  
  }  
}