<!--
function setCookie(name, value, expire) {
   document.cookie = name + "=" + escape(value) + ((expire == null) ? "" : ("; expires=" + expire.toGMTString()))
}

function getCookie(Name) {
   var search = Name + "="

   if (document.cookie.length > 0) { // if there are any cookies
      offset = document.cookie.indexOf(search)
 
      if (offset != -1) { // if cookie exists
         offset += search.length

         // set index of beginning of value
         end = document.cookie.indexOf(";", offset)

         // set index of end of cookie value
         if (end == -1)
            end = document.cookie.length

         return unescape(document.cookie.substring(offset, end))
      } 
   }
}

if (!getCookie("UID")) {
	uniqueID=(new Date()).getTime()+""+Math.floor((Math.random()*899999)+100000);
	setCookie("UID",uniqueID, new Date(2010,0,1,0,0,0));
}

//-->
<!--
function loadWin(para1) {
msg=window.open(para1,"ProjectCenter",'scrollbars=yes, toolbar=no,location=no,directories=no,status=no,menubar=no,width=485,height=400');
//msg.creator = self;
}
// -->
<!--
function loadWinPar(para1,para2,w,h) {
msg=window.open(para1,para2,'width='+w+',height='+h+', scrollbars=yes, toolbar=no,location=no,directories=no,status=yes,menubar=no');
msg.creator = self;
}
// -->
<!--
function loadWinHp(para1) {
msg=window.open(para1,"Edilio",'scrollbars=no, toolbar=no,location=no,directories=no,status=no,menubar=no,width=317,height=318');
//msg.creator = self;
}
// -->
<!--
function loadPop(para1) {
msg=window.open(para1,"ProjectCenter",'scrollbars=yes, toolbar=no,location=no,directories=no,status=yes,menubar=no,width=703,height=600');
msg.creator = self;
}
// -->
<!--
function load4(para1) {
msg=window.open(para1,"4",'scrollbars=yes, toolbar=no,location=no,directories=no,status=yes,menubar=no,width=750,height=570');
msg.creator = self;
}
// -->
<!--
function loadTraining(para1) {
msg=window.open(para1,"ProjectCenter",'scrollbars=yes, toolbar=no,location=no,directories=no,status=no,menubar=no,width=700,height=500');
msg.creator = self;
}
// -->
<!--
function go(){
if (document.selecter.D1.options[document.selecter.D1.selectedIndex].value != "none") {
location = document.selecter.D1.options[document.selecter.D1.selectedIndex].value
		}
	}
//-->

<!-- Begin
function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}
//  End -->