

function writeIcons(lang) {
	switch(lang)
	{
	case "pl":
	document.write('<a href="javascript:window.print();" title="Wydrukuj tą stronę" style="cursor:pointer;" >drukuj</a> | ' +
	'<a href="javascript:emailFriend(\'pl\');" title="Wyślij linka znajomemu" style="cursor:pointer;" >wyślij linka</a> | ' +
	'<a href="javascript:bookmark();" title="Zrób zakładkę do tej strony" style="cursor:pointer;">zrób zakładkę</a>');
	break;
	default:
	document.write('<a href="javascript:window.print();" title="Print this page" style="cursor:pointer;" >print</a> | ' +
	'<a href="javascript:emailFriend(\'en\');" title="Share this website with your friend" style="cursor:pointer;" >share</a> | ' +
	'<a href="javascript:bookmark();" title="Bookmark this page" style="cursor:pointer;">bookmark</a>');
	}
}






function bookmark() {
	
  if (navigator.platform.indexOf('Mac') != -1) {
     var keys = "Cmd + D";
  } else {
     var keys = "Ctrl + D";
  }
  var bookmarktext = "Close this info box then press " + keys + " to bookmark this page.";
  if (window.opera && window.print){ // Opera
      alert(bookmarktext);
  } else if (document.all) { // IE
       window.external.AddFavorite(document.location.href, document.title);
  } else { //Firefox, Safari and other ones
       alert(bookmarktext);
  }
  
}







function emailFriend(lang) {
	
	page = 'email-friend';
	if (lang=='pl') page = 'wyslij-linka';

	new_window = window.open('index.php?page='+page,'','toolbar=0,menubar=0,resizable=0,dependent=0,status=0,scrollbars=0,width=620,height=500,left=50,top=50');

}







