var iWinX=640;
var iWinY=480;

var newWin = null; 
function popUp(strURL, strType, strHeight, strWidth) { 
 if (newWin != null && !newWin.closed) 
   newWin.close(); 
 var strOptions=""; 
 if (strType=="resizenoscroll") 
   strOptions="resizable,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="fixednoscroll") 
   strOptions="status,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="fixedscroll") 
   strOptions="status,scrollbars,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="resizescroll") 
   strOptions="scrollbars,"+ 
     "resizable,status=1,height="+ 
     strHeight+",width="+strWidth;  
 if (strType=="elastic") 
   strOptions="toolbar,menubar,scrollbars,"+ 
     "resizable,location,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="flexible") 
   strOptions="menubar,scrollbars,"+ 
     "resizable,location,height="+ 
     strHeight+",width="+strWidth; 
 newWin = window.open(strURL, 'newWin', strOptions); 
 newWin.focus(); 
}

function openerChangeUrl(objTarget, strUrl)
{
	 if (objTarget && !objTarget.closed) {
		 objTarget.location.href = strUrl;
		 objTarget.focus()
	}
} // end function openerChangeUrl

function parentNav(_sUrl){if(window.opener != null){window.opener.location=_sUrl;window.opener.focus();}}

function recommendPage(){window.location='mailto:?subject='+aCommons['recommend_subject']+'&body='+aCommons['recommend_body']+': '+document.title+": "+document.location;}

var aCommons=[];
// recommend page
aCommons['recommend_subject']='International Power - 2005 Annual Report';
aCommons['recommend_body']='I thought this link might interest you';