function openMyWindow(){
	window.open("allergia_egyszeri/print.html", "Print", "width=320,height=610,status=no")
};

function topMenu() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("topmenu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}


function healthMenu() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("healthmenu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}


function externalLinks()
{
	if (!document.getElementsByTagName)
		return;
	var anchors = document.getElementsByTagName("a");
	for (var i = 0; i < anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
			anchor.target = "_blank";
		}
	}
}
/*akcio lejart 20100630
function popup_advertisement_Add()
{
    if(window.location.pathname == '/' || window.location.pathname == '/nyito'){
        var width = $('html').width();
        var height = $('html').height();
        var top = document.body.scrollTop;
        if(top == 0) top = window.pageYOffset;
        if(isNaN(top)) {top = 0;};
        top = top + 100;
        if(height == 0) height = $('body').attr('scrollHeight');
        $('body').append('<div id="imagePopupBG" style="position:absolute; top:0; left:0; width:'+width+'px; height:'+height+'px;'
            +'background-color:#000; filter:alpha(opacity=80); -moz-opacity:0.8; opacity: 0.8; ">'
            +'</div>');
        $('body').append('<div id="imagePopupCont" style="position:absolute; top:0; left:0; width:'+width+'px; height:'+height+'px; ">'
            +'<div id="imagePopup" style="position:relative; margin: '+top+'px auto 0 auto; width:500px; height:310px;">'
                +'<img src="images/popup_reklam_0531_500w.jpg" width="500" height="310" style="z-index:2;position:absolute;" />'
                +'<div id="imagePopupClose" style="z-index: 1; position:absolute; right:-26px; top:0; width:30px; height:30px; background-image:url(\'images/closeButton_green.png\'); cursor:pointer;"></div>'
            +'</div></div>');
        $('#imagePopupClose').bind('click', function(){popup_advertisement_Remove();});
    }
}
function popup_advertisement_Remove()
{
    $('#imagePopupClose').unbind('click', function(){popup_advertisement_Remove();});
    $('#imagePopupBG').remove();
    $('#imagePopupCont').remove();
}
*/
function pageLoad()
{
	topMenu();
	healthMenu();
	externalLinks();
    //akcio lejart 20100630: popup_advertisement_Add();
}


window.onload = pageLoad;