function OpenWindow(Url, Width, Height)
{
	window.open(Url,'','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=' + Width + ', height=' + Height);
	return false;
}

function PlayMovie(Url, Width, Height, Movie, MovieWidth, MovieHeight)
{
	window.open(Url + '?movie=' + Movie + '&width=' + MovieWidth + '&height=' + MovieHeight,'','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=' + Width + ', height=' + Height);
	return false;
}

/*
sfHover = function() 
{
	var sfEls = document.getElementById("nav").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);
*/
