
function openImages(_id)
{	window.open("http://eurweb.com/storyImages.cfm?story="+_id+"","","toolbar=no,scrollbars=auto,location=no,status=no,width=500,height=400,resizable=0");}
function PostComment(_id,_title)
{	window.open("http://eurweb.com/interact/sendcomment.cfm?story="+_id+"&title="+_title,"Comments","toolbar=no,scrollbars=auto,location=no,status=no,width=348,height=360,resizable=0");}
function launchmail(_id)
{ 	window.open("http://eurweb.com/sendit/sendemail.cfm?story="+_id+"","","toolbar=no,scrollbars=auto,location=no,status=no,width=370,height=350,resizable=1"); }

sfHover = function() 
{	var sfEls = document.getElementById("sidenav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
