/*######################################################################
# Zero Portal 1.0.2                                                    #
# -------------------------------------------------------------------- #
# név: 				 : global.js									   #
# kezdés			 : Szerda, 2007. szeptember 26.					   #
# utolsó módosítás   : Szerda, 2007. szeptember 26.					   #
# -------------------------------------------------------------------- #
# írta               : Petaki (Peter Takacs)                           #
# email				 : petaki@freemail.hu							   #
######################################################################*/

/* Új PopUp ablak nyitása */

function openWindow(purl,ptitle,pwidth,pheight,pscroll)
{
	window.open( purl,ptitle,'width='+ pwidth +',height='+ pheight +',scrollbars='+ pscroll +', menubar=no,status=no');
}

/* A kijelentkezésnél életbe lépő script amely a hátteret szürke árnyalatossá teszi,
mintha Windows alatt lennénk ;) */

function log_out()
{
  // You can change 30 and 0.3 to suit your 'tastes' :)
  bo = document.getElementsByTagName('body');
  bo[0].style.filter = 'Alpha(opacity="30")';
  bo[0].style.MozOpacity = '0.3';
  bo[0].style.opacity = '0.3';

  if (confirm('Biztos, hogy ki akarsz jelentkezni?'))
  {
    return true;
  }
  else
  {
    bo[0].style.filter = 'Alpha(opacity="100")';
    bo[0].style.MozOpacity = '1';
    bo[0].style.opacity = '1';

    return false;
  }
}

/* Űrlap mező kitörlése
Ha bele írjuk, hogy mi legyen a tartalma */

function clearText(thefield) {
	if (thefield.defaultValue == thefield.value) thefield.value = "";
}

/**
 * jQuery
 */
$(document).ready(function() {
    $('div#module-bottom').siblings('div#module-base-content').find('img').click(function() { $('div#module-bottom').toggle('fast'); });
});
