jQuery(document).ready(/*This function gets loaded when all the HTML, not including the portlets, isloaded.*/function tooltip() {jQuery('a').Tooltip({showURL: false});	/*jQuery("a").click( function() { jQuery(this).hide("slow");return false;} );*/});Liferay.Portlet.ready(/*This function gets loaded after each and every portlet on the page.portletId: the current portlet's idjQueryObj: the jQuery wrapped object of the current portlet*/function(portletId, jQueryObj) {});jQuery(document).last(/*This function gets loaded when everything, including the portlets, is onthe page.*/function() {});/*This function opens a new window with fixed size.*/var difnewwindow;function popupWin(url, name)	{difnewwindow=window.open(url, name,'toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes, resizable=yes,copyhistory=no,width=650,height=520,left=90,top=50');if (window.focus) {difnewwindow.focus()}}