//email friend
function EmailLink(){
var sPath = window.location.pathname;
var sPage = sPath.substr(sPath.lastIndexOf('/') + 1);
window.location = "mailto:"+"?subject=Lamprell plc" + "&body=" + "I thought this link might interest you: http://www.lamprell.com"+sPath;
}
//popup
var newWin = null; 
function popup(strURL, strType, strHeight, strWidth) { 
 if (newWin != null && !newWin.closed) 
   newWin.close(); 
 var strOptions=""; 
 if (strType=="console") 
   strOptions="resizable,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="fixed") 
   strOptions="status,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="fixedscroll") 
   strOptions="scrollbars,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="elastic") 
   strOptions="scrollbars,"+ 
     "resizable,height="+ 
     strHeight+",width="+strWidth; 
 newWin = window.open(strURL, 'newWin', strOptions); 
 newWin.focus(); 
}
var urlAddress = self.location.href;
var pageName = document.title;