	// Rollover per i CSS
	var OrgCSS;
	function over(obj, css) {
		OrgCSS = obj.style.cssText;
		obj.style.cssText = css;
	}

	function out(obj) {
		obj.style.cssText = OrgCSS;
	}

	function OpenLink(url) {
		window.open(url, "_blank", "height=580, width=780, left=10, top=10, resizable=yes, dependent=no, titlebar=yes, status=yes, location=yes, toolbar=yes, menubar=yes, scrollbars=yes");
	}
