
<!--

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



function ChangeLocale(name, Id)
{
var reg;
var newPair = name + '=' + Id;
if (name == 'lng')
 reg = new RegExp(/lng=\d+/i);
else
 reg = new RegExp(/cur=\d+/i);
var result = reg.exec(document.URL);
if ( result != null)
{
 window.location = document.URL.replace(result[0], newPair);
 return;
}

if (location.search.length == 0)
 window.location = document.URL + '?' + newPair;
else
{
if (location.search == '?')
 window.location = document.URL + newPair;
else
 window.location = document.URL + '&' + newPair;
}
}

//-->

		<!--
					function Rimetto(a, obj) {
						if(obj.value.length==0){
							if(a.toUpperCase()== 'PASSWORD' & (document.frmLogin.c_email.value.length==0 | document.frmLogin.c_email.value.toUpperCase()=='EMAIL')){
								obj.value = a;
							} else {
								if(a.toUpperCase()== 'EMAIL'){
									obj.value = a;
									document.frmLogin.c_pwd.value = 'Password';
								}
							}
						}
					}
//-->

function pop(str) {
        open(str,'pop','scrollbars=yes,resizable=yes,status=no,toolbar=no');
     }

function pop2(str) {
        open(str,'pop','scrollbars=no,resizable=no,status=no,toolbar=no');
     }

 /**
 * Simple encryption to hide email addresses from crawlers in webpages.
 * This code is Free Software provided under an MIT License.
 * Written by Diego Doval: bnaeQ0bvPXOnZQYgaZqp1ZQO
 * http://www.dynamicobjects.com/d2r/
 */
var key = "XAD4@.56CEGFHIKLVWJdfTUhijYB1bacemngMNQOPRSopqrstuvz0Z8923klwxy7";
var base = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@.0123456789";
function swappa(encoded, linkText)
{
  document.write("<a hr"+"ef=\"ma"+"ilto"+":"+decode(encoded)+"\">"
+decode(encoded)+"</"+"a>");
}

function decode(str)
{
  return codec(key, base, str);
}

function codec(from, to, str)
{
  var codedResult = "";
  for (i = 0; i < str.length; i++) {
    current = str.charAt(i);
    idx = from.indexOf(current);
    nextVal = (idx == -1) ? current : to.charAt(idx);
    codedResult += nextVal;
  }
  return codedResult;
}
 /** fine
 */
 