function DoPrintPage(){
	window.print();	
}

function DoBookMark(){
	var txt = self.location.href;
	if (document.all){
		window.external.AddFavorite(txt,"Cinven.com - "+ document.title);
	}else{
		window.sidebar.addPanel("Cinven.com - "+ document.title, txt, "")
	}
}

function DoEmailPage(){
	var mail_str;
	mail_str = "mailto:?subject=" + document.title;
	mail_str += "&body=I thought you might be interested in the \"" + document.title + "\".";
	mail_str += " You can view it at: " + location.href;
	window.location.href = mail_str;
}

