// menu script
ypSlideOutMenu.Registry = []
ypSlideOutMenu.aniLen = 250
ypSlideOutMenu.hideDelay = 300
ypSlideOutMenu.minCPUResolution = 10

function ypSlideOutMenu(id, dir, left, top, width, height) {
	this.ie = document.all ? 1 : 0
	this.ns4 = document.layers ? 1 : 0
	this.dom = document.getElementById ? 1 : 0
	if (this.ie || this.ns4 || this.dom) {
		this.id = id
		this.dir = dir
		this.orientation = dir == "left" || dir == "right" ? "h" : "v"
		this.dirType = dir == "right" || dir == "down" ? "-" : "+"
		this.dim = this.orientation == "h" ? width : height
		this.hideTimer = false
		this.aniTimer = false
		this.open = false
		this.over = false
		this.startTime = 0
		this.gRef = "ypSlideOutMenu_"+id
		eval(this.gRef+"=this")
		ypSlideOutMenu.Registry[id] = this
		var d = document
		d.write('<style type="text/css">')
		d.write('#' + this.id + 'Container { visibility:hidden; ')
		d.write('left:' + left + 'px; ')
		d.write('top:' + top + 'px; ')
		d.write('overflow:hidden; }')
		d.write('#' + this.id + 'Container, #' + this.id + 'Content { position:absolute; ')
		d.write('width:' + width + 'px; ')
		d.write('height:' + height + 'px; ')
		d.write('clip:rect(0 ' + width + ' ' + height + ' 0); ')
		d.write('}')
		d.write('</style>')
		this.load()
	}
}
ypSlideOutMenu.prototype.load = function() {
var d = document
var lyrId1 = this.id + "Container"
var lyrId2 = this.id + "Content"
var obj1 = this.dom ? d.getElementById(lyrId1) : this.ie ? d.all[lyrId1] : d.layers[lyrId1]
if (obj1) var obj2 = this.ns4 ? obj1.layers[lyrId2] : this.ie ? d.all[lyrId2] : d.getElementById(lyrId2)
var temp
if (!obj1 || !obj2) window.setTimeout(this.gRef + ".load()", 100)
else {
this.container = obj1
this.menu = obj2
this.style = this.ns4 ? this.menu : this.menu.style
this.homePos = eval("0" + this.dirType + this.dim)
this.outPos = 0
this.accelConst = (this.outPos - this.homePos) / ypSlideOutMenu.aniLen / ypSlideOutMenu.aniLen 
if (this.ns4) this.menu.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
this.menu.onmouseover = new Function("ypSlideOutMenu.showMenu('" + this.id + "')")
this.menu.onmouseout = new Function("ypSlideOutMenu.hideMenu('" + this.id + "')")
this.endSlide()
}
}
ypSlideOutMenu.showMenu = function(id)
{
//window.status = id
var reg = ypSlideOutMenu.Registry
var obj = ypSlideOutMenu.Registry[id]
if (obj.container) {
obj.over = true
for (menu in reg) if (id != menu) ypSlideOutMenu.hide(menu)
if (obj.hideTimer) { reg[id].hideTimer = window.clearTimeout(reg[id].hideTimer) }
if (!obj.open && !obj.aniTimer) reg[id].startSlide(true)
}
}
ypSlideOutMenu.hideMenu = function(id)
{
var obj = ypSlideOutMenu.Registry[id]
if (obj.container) {
if (obj.hideTimer) window.clearTimeout(obj.hideTimer)
obj.hideTimer = window.setTimeout("ypSlideOutMenu.hide('" + id + "')", ypSlideOutMenu.hideDelay);
}
}
ypSlideOutMenu.hide = function(id)
{
var obj = ypSlideOutMenu.Registry[id]
obj.over = false
if (obj.hideTimer) window.clearTimeout(obj.hideTimer)
obj.hideTimer = 0
if (obj.open && !obj.aniTimer) obj.startSlide(false)
}
ypSlideOutMenu.prototype.startSlide = function(open) {
this.open = open
if (open) this.setVisibility(true)
this.startTime = (new Date()).getTime() 
this.aniTimer = window.setInterval(this.gRef + ".slide()", ypSlideOutMenu.minCPUResolution)
}
ypSlideOutMenu.prototype.slide = function() {
var elapsed = (new Date()).getTime() - this.startTime
if (elapsed > ypSlideOutMenu.aniLen) this.endSlide()
else {
var d = Math.round(Math.pow(ypSlideOutMenu.aniLen-elapsed, 2) * this.accelConst)
if (this.open && this.dirType == "-") d = -d
else if (this.open && this.dirType == "+") d = -d
else if (!this.open && this.dirType == "-") d = -this.dim + d
else d = this.dim + d
this.moveTo(d)
}
}
ypSlideOutMenu.prototype.endSlide = function() {
this.aniTimer = window.clearTimeout(this.aniTimer)
this.moveTo(this.open ? this.outPos : this.homePos)
if (!this.open) this.setVisibility(false)
if ((this.open && !this.over) || (!this.open && this.over)) {
this.startSlide(this.over)
}
}
ypSlideOutMenu.prototype.setVisibility = function(bShow) { 
var s = this.ns4 ? this.container : this.container.style
s.visibility = bShow ? "visible" : "hidden"
}
ypSlideOutMenu.prototype.moveTo = function(p) { 
this.style[this.orientation == "h" ? "left" : "top"] = p
}
ypSlideOutMenu.prototype.getPos = function(c) {
return parseInt(this.style[c])
}


//menu start
//*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *
//*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *
function fejlecjol(language) {

	// menus : xpos ypos width height
	if (language=='en')	{
		new ypSlideOutMenu("support", "down", 364, 80, 92,79);
		new ypSlideOutMenu("download", "down", 409, 80, 115,79);
		new ypSlideOutMenu("registration", "down", 488, 80, 113,50);
	}
	if (language=='hu')	{
		new ypSlideOutMenu("support", "down", 325, 80, 130,79);
		new ypSlideOutMenu("download", "down", 389, 80, 118,79);
		new ypSlideOutMenu("registration", "down", 457, 80, 123,50);
	}
	if (language=='de')	{
		new ypSlideOutMenu("support", "down", 364, 80, 92,79);
		new ypSlideOutMenu("download", "down", 409, 80, 115,79);
		new ypSlideOutMenu("registration", "down", 488, 80, 113,50);
	}
	
	// content
	document.writeln('<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0">');
	document.writeln('<TR>');
	document.writeln('<TD  VALIGN="top" BACKGROUND="../images/h_01_logo.gif">'+
		'<A NAME="start"><IMG SRC="../images/pixel.gif" WIDTH="188" HEIGHT="3" BORDER="0"></A><BR>'+
		'<IMG SRC="../images/pixel.gif" WIDTH="155" HEIGHT="10" BORDER="0">'+
		'<FONT CLASS="vilagos"><B><I>v3.6</I></B></FONT>'+
		'</TD>');
	document.writeln('<TD><IMG SRC="/images/h_01_02.gif" BORDER="0"><BR></TD>');
	document.writeln('<TD><IMG SRC="/images/h_01_03.gif" BORDER="0"><BR></TD>');
	document.writeln('<TD VALIGN="top" ALIGN="right" BACKGROUND="/images/h_01_04.gif">'+
		'<IMG SRC="/images/pixel.gif" WIDTH="180" HEIGHT="11" BORDER="0"><BR>'+
		'<A HREF="javascript:ablakker(\'/subscribe_'+language+'.html\',380,170,\'no\',\'no\')" onFocus="blur()"><IMG SRC="/images/join_'+language+'.gif" BORDER="0"></A><BR>'+
		'</TD>');
	document.writeln('</TR>');
	document.writeln('</TABLE>');
	document.writeln('<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0">');
	document.writeln('<TR>');
	document.writeln('<TD><IMG SRC="/images/h_02_01_'+language+'.gif" BORDER="0" USEMAP="#flags"><BR></TD>');
	document.writeln('<TD><A HREF="/main/news.php?lang='+language+'" onMouseOver="be(\'news\');" onMouseOut="ki(\'news\');" onFocus="blur()"><IMG SRC="/images/buttons/news_'+language+'.gif" BORDER="0" NAME="news"></A><BR></TD>');
	document.writeln('<TD><A HREF="/main/features_'+language+'.html" onMouseOver="be(\'features\');" onMouseOut="ki(\'features\');" onFocus="blur()"><IMG SRC="/images/buttons/features_'+language+'.gif" BORDER="0" NAME="features"></A><BR></TD>');
	document.writeln('<TD><A HREF="javascript:location.reload();" onMouseOver="ypSlideOutMenu.showMenu(\'support\');" onMouseOut="ypSlideOutMenu.hideMenu(\'support\');" onFocus="blur()"><IMG SRC="/images/buttons/support_'+language+'.gif" BORDER="0"></A><BR></TD>');
	document.writeln('<TD><A HREF="javascript:location.reload();" onMouseOver="ypSlideOutMenu.showMenu(\'download\')" onMouseOut="ypSlideOutMenu.hideMenu(\'download\')" onFocus="blur()"><IMG SRC="/images/buttons/download_'+language+'.gif" BORDER="0"></A><BR></TD>');
	document.writeln('<TD><A HREF="javascript:location.reload();" onMouseOver="ypSlideOutMenu.showMenu(\'registration\')" onMouseOut="ypSlideOutMenu.hideMenu(\'registration\')" onFocus="blur()"><IMG SRC="/images/buttons/registration_'+language+'.gif" BORDER="0"></A><BR></TD>');
	document.writeln('<TD><A HREF="/main/developers_'+language+'.html" onMouseOver="be(\'developers\');" onMouseOut="ki(\'developers\');" onFocus="blur()"><IMG SRC="/images/buttons/developers_'+language+'.gif" BORDER="0" NAME="developers"></A><BR></TD>');
//	document.writeln('<TD><A HREF="/forum/forum.php?lang='+language+'" onMouseOver="be(\'forum\');" onMouseOut="ki(\'forum\');" onFocus="blur()"><IMG SRC="/images/buttons/forum_'+language+'.gif" BORDER="0" NAME="forum"></A><BR></TD>');
	document.writeln('<TD><A HREF="/main/links_'+language+'.html" onMouseOver="be(\'links\');" onMouseOut="ki(\'links\');" onFocus="blur()"><IMG SRC="/images/buttons/links_'+language+'.gif" BORDER="0" NAME="links"></A><BR></TD>');
	document.writeln('</TR>');
	document.writeln('</TABLE>');

	// ha netscape 4 akkor szoveges menu
	if ((navigator.appName=="Netscape")&&(parseInt(navigator.appVersion)==4)) {

		if (language=='en')	{
			var support = new Array(1);	support[1] = "technikal info &#8226;&nbsp;"; support[2] = "faq &#8226;&nbsp;"; support[3] = "online support &#8226;&nbsp;"; support[4] = "examples &#8226;&nbsp;"; support[5] = "contact &#8226;&nbsp;";
			var download = new Array(1); download[1] = "release notes &#8226;&nbsp;"; download[2] = "shareware version &#8226;&nbsp;"; download[3] = "registered version &#8226;&nbsp;"; download[4] = "additional utilities &#8226;&nbsp;"; download[5] = "translations &#8226;&nbsp;";
			var registration = new Array(1); registration[1] = "general info &#8226;&nbsp;"; registration[2] = "register online &#8226;&nbsp;"; registration[3] = "postal registration &#8226;&nbsp;";
		}
		if (language=='hu')	{
			var support = new Array(1); support[1] = "technikai információk &#8226;&nbsp;"; support[2] = "gy.i.k. &#8226;&nbsp;"; support[3] = "online támogatás &#8226;&nbsp;"; support[4] = "példák &#8226;&nbsp;"; support[5] = "kapcsolatfelvétel &#8226;&nbsp;";
			var download = new Array(1); download[1] = "verziótörténelem &#8226;&nbsp;"; download[2] = "shareware változat &#8226;&nbsp;"; download[3] = "regisztrált változat &#8226;&nbsp;"; download[4] = "segédprogramok &#8226;&nbsp;"; download[5] = "fordítások &#8226;&nbsp;";
			var registration = new Array(1); registration[1] = "általános tudnivalók &#8226;&nbsp;"; registration[2] = "online regisztráció &#8226;&nbsp;"; registration[3] = "postai megrendelés &#8226;&nbsp;";
		}
		
		//support
		document.writeln('<div id="supportContainer"><div id="supportContent" class="menu"><div>');
		document.writeln('<A HREF="../support/technikalinfo_'+language+'.html" onMouseOver="be(\'technikal\');" onMouseOut="ki(\'technikal\');" onFocus="blur()">'+support[1]+'</A>');
		document.writeln('<A HREF="../support/faq_'+language+'.html" onMouseOver="be(\'faq\');" onMouseOut="ki(\'faq\');" onFocus="blur()">'+support[2]+'</A>');
		document.writeln('<A HREF="../support/onlinesupport_'+language+'.html" onMouseOver="be(\'onlinesupport\');" onMouseOut="ki(\'onlinesupport\');" onFocus="blur()">'+support[3]+'</A>');
		document.writeln('<A HREF="../support/examples_'+language+'.html" onMouseOver="be(\'examples\');" onMouseOut="ki(\'examples\');" onFocus="blur()">'+support[4]+'</A>');
		document.writeln('<A HREF="../support/contact_'+language+'.html" onMouseOver="be(\'contact\');" onMouseOut="ki(\'contact\');" onFocus="blur()">'+support[5]+'</A>');
		document.writeln('</div></div></div>');
		//download
		document.writeln('<div id="downloadContainer"><div id="downloadContent" class="menu"><div>');
		document.writeln('<A HREF="../download/releasenotes_'+language+'.html" onMouseOver="be(\'releasenotes\');" onMouseOut="ki(\'releasenotes\');" onFocus="blur()">'+download[1]+'</A>');
		document.writeln('<A HREF="../download/sharewareversion_'+language+'.html" onMouseOver="be(\'sharewareversion\');" onMouseOut="ki(\'sharewareversion\');" onFocus="blur()">'+download[2]+'</A>');
		document.writeln('<A HREF="../download/registeredversion_'+language+'.html" onMouseOver="be(\'registeredversion\');" onMouseOut="ki(\'registeredversion\');" onFocus="blur()">'+download[3]+'</A>');
		document.writeln('<A HREF="../download/additionalutilities_'+language+'.html" onMouseOver="be(\'additionalutilities\');" onMouseOut="ki(\'additionalutilities\');" onFocus="blur()">'+download[4]+'</A>');
		document.writeln('<A HREF="../download/translations_'+language+'.html" onMouseOver="be(\'translations\');" onMouseOut="ki(\'translations\');" onFocus="blur()">'+download[5]+'</A>');
		document.writeln('</div></div></div>');
		//registration
		document.writeln('<div id="registrationContainer"><div id="registrationContent" class="menu"><div>');
		document.writeln('<A HREF="../registration/generalinfo_'+language+'.html" onMouseOver="be(\'generalinfo\');" onMouseOut="ki(\'generalinfo\');" onFocus="blur()">'+registration[1]+'</A>');
		document.writeln('<A HREF="../registration/registeronline_'+language+'.html" onMouseOver="be(\'registeronline\');" onMouseOut="ki(\'registeronline\');" onFocus="blur()">'+registration[2]+'</A>');
		document.writeln('<A HREF="../registration/postalregistration_'+language+'.html" onMouseOver="be(\'postalregistration\');" onMouseOut="ki(\'postalregistration\');" onFocus="blur()">'+registration[3]+'</A>');
		document.writeln('</div></div></div>');
	// ha nem netscape 4 akkor kepekkel van a menu
	} else {
		//support
		document.writeln('<div id="supportContainer"><div id="supportContent" class="menu"><div>');
		document.writeln('<A HREF="/support/technikalinfo_'+language+'.html" onMouseOver="be(\'technikal\');" onMouseOut="ki(\'technikal\');" onFocus="blur()"><IMG SRC="/images/buttons/technikal_'+language+'.gif" BORDER="0" NAME="technikal"><BR></A>');
		document.writeln('<A HREF="/support/faq_'+language+'.html" onMouseOver="be(\'faq\');" onMouseOut="ki(\'faq\');" onFocus="blur()"><IMG SRC="/images/buttons/faq_'+language+'.gif" BORDER="0" NAME="faq"><BR></A>');
		document.writeln('<A HREF="/support/onlinesupport_'+language+'.html" onMouseOver="be(\'onlinesupport\');" onMouseOut="ki(\'onlinesupport\');" onFocus="blur()"><IMG SRC="/images/buttons/onlinesupport_'+language+'.gif" BORDER="0" NAME="onlinesupport"><BR></A>');
		document.writeln('<A HREF="/support/examples_'+language+'.html" onMouseOver="be(\'examples\');" onMouseOut="ki(\'examples\');" onFocus="blur()"><IMG SRC="/images/buttons/examples_'+language+'.gif" BORDER="0" NAME="examples"><BR></A>');
		document.writeln('<A HREF="/support/contact_'+language+'.html" onMouseOver="be(\'contact\');" onMouseOut="ki(\'contact\');" onFocus="blur()"><IMG SRC="/images/buttons/contact_'+language+'.gif" BORDER="0" NAME="contact"><BR></A>');
		document.writeln('</div></div></div>');
		//download
		document.writeln('<div id="downloadContainer"><div id="downloadContent" class="menu"><div>');
		document.writeln('<A HREF="/download/releasenotes_'+language+'.html" onMouseOver="be(\'releasenotes\');" onMouseOut="ki(\'releasenotes\');" onFocus="blur()"><IMG SRC="/images/buttons/releasenotes_'+language+'.gif" BORDER="0" NAME="releasenotes"><BR></A>');
		document.writeln('<A HREF="/download/sharewareversion_'+language+'.html" onMouseOver="be(\'sharewareversion\');" onMouseOut="ki(\'sharewareversion\');" onFocus="blur()"><IMG SRC="/images/buttons/sharewareversion_'+language+'.gif" BORDER="0" NAME="sharewareversion"><BR></A>');
		document.writeln('<A HREF="/download/registeredversion_'+language+'.html" onMouseOver="be(\'registeredversion\');" onMouseOut="ki(\'registeredversion\');" onFocus="blur()"><IMG SRC="/images/buttons/registeredversion_'+language+'.gif" BORDER="0" NAME="registeredversion"><BR></A>');
		document.writeln('<A HREF="/download/additionalutilities_'+language+'.html" onMouseOver="be(\'additionalutilities\');" onMouseOut="ki(\'additionalutilities\');" onFocus="blur()"><IMG SRC="/images/buttons/additionalutilities_'+language+'.gif" BORDER="0" NAME="additionalutilities"><BR></A>');
		document.writeln('<A HREF="/download/translations_'+language+'.html" onMouseOver="be(\'translations\');" onMouseOut="ki(\'translations\');" onFocus="blur()"><IMG SRC="/images/buttons/translations_'+language+'.gif" BORDER="0" NAME="translations"><BR></A>');
		document.writeln('</div></div></div>');
		//registration
		document.writeln('<div id="registrationContainer"><div id="registrationContent" class="menu"><div>');
		document.writeln('<A HREF="/registration/generalinfo_'+language+'.html" onMouseOver="be(\'generalinfo\');" onMouseOut="ki(\'generalinfo\');" onFocus="blur()"><IMG SRC="/images/buttons/generalinfo_'+language+'.gif" BORDER="0" NAME="generalinfo"><BR></A>');
		document.writeln('<A HREF="/registration/registeronline_'+language+'.html" onMouseOver="be(\'registeronline\');" onMouseOut="ki(\'registeronline\');" onFocus="blur()"><IMG SRC="/images/buttons/registeronline_'+language+'.gif" BORDER="0" NAME="registeronline"><BR></A>');
		document.writeln('<A HREF="/registration/postalregistration_'+language+'.html" onMouseOver="be(\'postalregistration\');" onMouseOut="ki(\'postalregistration\');" onFocus="blur()"><IMG SRC="/images/buttons/postalregistration_'+language+'.gif" BORDER="0" NAME="postalregistration"><BR></A>');
		document.writeln('</div></div></div>');
	}
}
//*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *
//*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *
//menu end

versionner = '3.6';

function be(kep) {
	kepBe = eval(kep + "be.src");
	document [kep].src = kepBe;
}
function ki(kep) {
	kepKi = eval(kep + "ki.src");
	document [kep].src = kepKi;
}


function titlejol(language) {
	if (language=='en')	{
		document.writeln('<TITLE>MasterBooter - Advanced Boot Manager</TITLE>');
	}
	if (language=='hu')	{
		document.writeln('<TITLE>MasterBooter - Boot manager és particionáló egyben</TITLE>');
	}
	if (language=='de')	{
		document.writeln('<TITLE>MasterBooter - Advanced Boot Manager</TITLE>');
	}
}

function mapjol(file,language) {
	document.writeln('<MAP NAME=\"flags\">');
	if (language!='hu') {
		document.writeln('<AREA SHAPE="rect" COORDS="16,4,39,16" HREF="'+file+'_hu.html"  ALT="Magyar verzió">');
	}
	if (language!='de') {
		document.writeln('<AREA SHAPE="rect" COORDS="82,4,105,16" HREF="javascript:ablakker(\'/deutsch.html\',250,80,\'no\',\'no\')"  ALT="Unter Entwicklung">');
	}
	if (language!='en') {
		document.writeln('<AREA SHAPE="rect" COORDS="49,4,72,16" HREF="'+file+'_en.html"  ALT="English version">');
	}
	document.writeln('</MAP>');
}

function map_php(file,language) {
	document.writeln('<MAP NAME=\"flags\">');
	if (language!='hu') {
		document.writeln('<AREA SHAPE="rect" COORDS="16,4,39,16" HREF="'+file+'.php?lang=hu"  ALT="Magyar verzió">');
	}
	if (language!='de') {
		document.writeln('<AREA SHAPE="rect" COORDS="82,4,105,16" HREF="javascript:ablakker(\'/deutsch.html\',250,80,\'no\',\'no\')"  ALT="Unter Entwicklung">');
	}
	if (language!='en') {
		document.writeln('<AREA SHAPE="rect" COORDS="49,4,72,16" HREF="'+file+'.php?lang=en"  ALT="English version">');
	}
	document.writeln('</MAP>');
}


function copyrightjol(language) {
	document.writeln('<IMG SRC=\"../images/pixel.gif\" WIDTH=\"748\" HEIGHT=\"1\" BORDER=\"0\"><BR><BR><BR>');
	document.writeln('<table border=\"0\" cellspacing=\"0\" cellpadding=\"1\" width=\"710\"><tr><td class=\"tbl_keret\">');
	document.writeln('<TABLE BORDER=\"0\" CELLSPACING=\"0\" CELLPADDING=\"2\" WIDTH=\"100%\" CLASS=\"tbl\"><TR><TD>');
	if (language=='hu')	{
		document.writeln('<P CLASS=\"copyright\">Copyright 1997-2009 Nagy Dániel. Minden jog fenntartva.<BR> A honlapon található információk bármikor, előzetes figyelmeztetés nélkül megváltozhatnak.<BR>A honlapon szereplő egyéb termékek az ezeket gyártó cégek szellemi tulajdonát képezik.</P>');
	}
	if (language=='en')	{
		document.writeln('<P CLASS=\"copyright\">Copyright 1997-2009 Nagy Daniel. All rights reserved.<BR>Information in this document is subject to change without notice.<BR>Other products and companies referred to herein are trademarks or registered trademarks of their respective companies or mark holders.</P>');
	}
	if (language=='de')	{
		document.writeln('<P CLASS=\"copyright\">Copyright 1997-2009 Nagy Daniel. All rights reserved.<BR>Information in this document is subject to change without notice.<BR>Other products and companies referred to herein are trademarks or registered trademarks of their respective companies or mark holders.</P>');
	}
	document.writeln('</TD></TR></TABLE>');
	document.writeln('</td></tr></table><BR>');
}


function ablakker(file,wid,hei,bars,resiz) {
	xpos = (750-wid)/2;
//	ypos = ((window.screen.height-hei)/2)-100;
	ypos = 200;
	window1=window.open(''+file+'',"MasterBooter",'scrollbars='+bars+',resizable='+resiz+',width='+wid+',height='+hei+',left='+xpos+',top='+ypos+',screenx='+xpos+',screeny='+ypos+'');
	window1.focus()
}




function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}


//	document.writeln('<div id="###Container"><div id="###Content" class="menu"><div>');
//	document.writeln('<A HREF="#">pont</A><IMG SRC="/images/menus/sarga.gif" WIDTH="97" HEIGHT="1" BORDER="0"><BR>');
//	document.writeln('</div></div></div>');

