function add_favorite(url,title){
	window.external.AddFavorite(url,title);
}

function open_gallery (gid,pic) {
    window.open('http://www.domainabc.hu/_gallery.php?id='+gid+'&pic='+pic,'Galéria','status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,height=650,width=690');
}
function news_tab_menu(item){
	var menuFresh = document.getElementById('menu_item_fresh');
	var menuStar = document.getElementById('menu_item_star');
	var contentFresh = document.getElementById('newscontent_fresh');
	var contentStar = document.getElementById('newscontent_star');

	if(item==1){
		menuFresh.className = 'item1';
		contentFresh.style.display = 'block';
		menuStar.className = 'item2';
		contentStar.style.display = 'none';
	}else if(item==2){
		menuStar.className = 'item1';
		contentStar.style.display = 'block';
		menuFresh.className = 'item2';
		contentFresh.style.display = 'none';
	}
}

function open_center_layer(element,x,y,mode){
    /*
    mode : 0; absolut középre, x és y a div fele
    mode : 1; a toppos = y;
    mode : 2; a leftpos = x; toppos = y;
    */
	document.getElementById(element).style.display = "none";
	leftpos = 0 ;
    toppos = 0 ;

	if(mode==0){
		/* TOP */
		if(self.pageYOffset){
			yScroll = self.pageYOffset;
		}else if(document.documentElement && document.documentElement.scrollTop){
			yScroll = document.documentElement.scrollTop;
		}else if(document.body){
			yScroll = document.body.scrollTop;
		}
		if (self.innerHeight) {
			inheight = self.innerHeight;
		} else if (document.documentElement && document.documentElement.clientHeight) {
			inheight = document.documentElement.clientHeight;
		} else if (document.body) {
			inheight = document.body.clientHeight;
		}
		toppos = (yScroll + (inheight/2)) - y;
	}else{
		toppos = y;
	}

	if(mode==0){
		/* LEFT */
	    if (screen){
	        leftpos = (document.body.clientWidth/2) - x ;
		}

	    if (leftpos<0)
	        leftpos = 10 ;
	}else if(mode==2){
		leftpos = x;
	}

	document.getElementById(element).style.left = leftpos+'px';
	document.getElementById(element).style.top = toppos+'px';
}

function showmessagebox(mode){
    var elem = '';
    if(mode==0){
    	elem = 'error_message';
	}else if(mode==1){
		elem = 'success_message';
	}else{
		elem = 'messagebox';
	}

    document.getElementById(elem).style.display = "block" ;
    window.focus() ;

    document.onclick = function(){
    	document.getElementById(elem).style.display = "none" ;
    	window.focus() ;
    	document.onclick = empty ;
	}
}
function empty(){
}


// FLASH MEGJELENÍTÉS

function showflash(file,width,height,bgcolor,wmode) {
    if (wmode)
        wmode = 'transparent' ;
    else
        wmode = 'opaque' ;
    document.write('<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width=\"'+width+'\" height=\"'+height+'\">');
    document.write('<param name=\"allowScriptAccess\" value=\"always\" />');
    document.write('<param name=\"movie\" value=\"'+file+'\" />');
    document.write('<param name=\"quality\" value=\"high\" />');
    document.write('<param name=\"wmode\" value=\"'+wmode+'\" />');
    document.write('<param name=\"bgcolor\" value=\"'+bgcolor+'\" />');
    document.write('<param name=\"swliveconnect\" value=\"true\" />');
    document.write('<param name=\"menu\" value=\"false\" />');
    document.write('<embed src=\"'+file+'\" quality=\"high\" bgcolor=\"'+bgcolor+'\" width=\"'+width+'\" height=\"'+height+'\" allowScriptAccess=\"always\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" wmode=\"'+wmode+'\"  swliveconnect=\"true\" menu=\"false\"/>');
    document.write('</object>');
}

// RADIO BUTTONOK MEGJELÖLT ÉRTÉKÉNEK VISSZAADÁSA
function getradiovalue(radioObj)
	{
	if (!radioObj)
		return "" ;
	var radioLength = radioObj.length ;
	if (radioLength == undefined)
		if (radioObj.checked)
			return radioObj.value ;
		else
			return "" ;
	for (var i = 0; i < radioLength; i++)
        	{
		if (radioObj[i].checked)
			{
			return radioObj[i].value ;
			}
		}
	return "" ;
	}

function showelement(element)
    {
    document.getElementById(element).style.display = "block" ;
    window.focus() ;
    }

function hideelement(element)
    {
    document.getElementById(element).style.display = "none" ;
    window.focus() ;
    }
function hideall(elements){
    var element = elements.split(',');
	for(i=0; i<element.length; i++)	{
		e = element[i];
		if(document.getElementById(e)){
			document.getElementById(e).style.display = "none" ;
		}
	}
    window.focus() ;
}
function showhideelement(element)
    {
    if (document.getElementById(element).style.display=='none')
	showelement(element) ;
    else
	hideelement(element) ;
    window.focus() ;
    }

function fps_admin_mainMenu(){
	if(document.all && document.getElementById){
		navRoot = document.getElementById('fps_mainmenu');
		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 = '';
   				}
   			}
  		}
 	}
}

function fps_confirm(obj, str, yesscript, noscript){
    var content = '';
    var myhref;
    if(obj.href) {
        myhref = obj.href;
    }
    else myhref="";

    if(!yesscript) yesscript='';
    if(!noscript) noscript='';

    content = "<div class=\"fps_caution\"><div class=\"border_cont\"><p><b>"+str+"</b></p></div></div><div style=\"text-align: center\"><input type=\"button\" class=\"fps_button2\" value=\"Igen\" onclick=\"oneWin.close();"+yesscript+"window.location.href='"+myhref+"';\" /> <input type=\"button\" class=\"fps_button\" value=\"Nem\" onclick=\"oneWin.close();"+noscript+"\" /></div>";
    oneWin.open({
        winclass : 'fps_window',
        drag : 'fps_windrag',
        html : '<div id="x_winconfirm" class="fps_windrag"><img src="http://www.domainabc.hu/admin/image/redcaution_small.png" />Figyelem</div><div id="x_winconfirmclose" onclick="closeWindow();'+noscript+'" title="Bezár" class="fps_winclose"></div><div id="x_winconfirmcontent" class="fps_wincontent">'+content+'</div>'
    });
    return false;
}