function open_egu_jurnals(top, right)
{
	if(document.getElementById("egujournals_popup_container"))
	{
		document.getElementById('egujournals_popup_container').style.display="block";
	}
	else
	{
		var journals = document.createElement("div");
		journals.setAttribute("ID", "egujournals_popup_container");
		journals.id = "egujournals_popup_container";
		journals.style.borderWidth="1px";
		journals.style.borderColor="rgb(160, 160, 160)";
		journals.style.borderStyle="solid";

		if(!top)	top = "122";
		if(!right)	right = "25";
		journals.style.width="200px";
		journals.style.position="absolute";
		journals.style.top=top+"px";
		journals.style.right=right+"px";
		journals.style.backgroundColor="rgb(240, 240, 240)";
		journals.style.zIndex="555";
		journals.style.position="absolute";
		journals.style.paddingTop="5px";
		
		fn = function(){window.egujournalstimer = window.setTimeout("document.getElementById('egujournals_popup_container').style.display='none';", 2000);};
		if (journals.addEventListener)
		{ 
			journals.addEventListener("mouseout", fn, true); 
		} else if (journals.attachEvent)
		{ 
			r = journals.attachEvent("onmouseout", fn, true); 
		}

		fn = function(){if(window.egujournalstimer)window.clearTimeout(window.egujournalstimer);};
		if (journals.addEventListener)
		{ 
			journals.addEventListener("mouseover", fn, true); 
		} else if (journals.attachEvent)
		{ 
			r = journals.attachEvent("onmouseover", fn, true); 
		}
		
		document.getElementsByTagName("body")[0].appendChild(journals);

		journals.innerHTML = '<a id="egujournals_popup_close" href="#" onClick="document.getElementById(\'egujournals_popup_container\').style.display=\'none\'; return false;"></a><ul id="egujournals_popup_content"><li><a href="http://www.advances-in-geosciences.net/">Advances in Geosciences</a></li><li><a href="http://www.annales-geophysicae.net/">Annales Geophysicae</a></li><li><a href="http://www.atmospheric-chemistry-and-physics.net/" >Atmospheric Chemistry &amp; Physics</a></li><li><a href="http://www.atmospheric-measurement-techniques.net/">Atmospheric Measurement Techniques</a></li><li><a href="http://www.biogeosciences.net">Biogeosciences</a></li><li><a href="http://www.climate-of-the-past.net/">Climate of the Past</a></li><li><a href="http://www.earth-system-dynamics.net/">Earth System Dynamics</a></li><li><a href="http://www.geoscientific-model-development.net">Geoscientific Model Development</a></li><li><a href="http://www.hydrology-and-earth-system-sciences.net/">Hydrology and Earth System Sciences</a></li><li><a href="http://www.natural-hazards-and-earth-system-sciences.net/">Natural Hazards and Earth System Sciences</a></li><li><a href="http://www.nonlinear-processes-in-geophysics.net/">Nonlinear Processes in Geophysics</a></li><li><a href="http://www.ocean-science.net/">Ocean Science</a></li><li><a href="http://www.solid-earth.net/">Solid Earth</a></li><li><a href="http://www.stephan-mueller-special-publication-series.net/">Stephan Mueller Special Publication Series</a></li><li><a href="http://www.the-cryosphere.net/">The Cryosphere</a></li></ul>';
	}	

	return false;
}