﻿function printPage()
{
  var content = document.getElementById('printcontent').innerHTML;
  var printWin = window.open('', 'printWin', 'toolbar=no,width=610,height=500,top=5,left=5');
  
  printWin.document.writeln('<html>');
  printWin.document.writeln('<head>');
  printWin.document.writeln('<link href="style/default.css" rel="stylesheet" type="text/css" />');
  printWin.document.writeln('</head>');
  printWin.document.writeln('<body style="margin: 5px;">');
  printWin.document.writeln('<div align="right"><img src="images/mbCompanyLogo.gif" border="0" style="margin: 7px;"></div>');
  printWin.document.writeln('<br>');
  printWin.document.writeln(content);
  printWin.document.writeln('<p>');
  printWin.document.writeln('<div align="center" class="sysFooter">copyright &copy; 2009 &bull; IT Lean &bull; www.itlean.com</div>');
  printWin.document.writeln('<script>print(document);</script>');
  printWin.document.writeln('</boby>');
  printWin.document.writeln('</html>');
}

function insertEmail(objID,toName) {
    var em = 'ua.kd.naelti@';
    var em2 = '';
    for (var i = 3; i < em.length; i++) em2 = em.charAt(i) + em2;
    var e1 = document.getElementById(objID);
    e1.innerHTML = toName+em2;
    e1.href = 'mailto:' + toName + em2;
}


function showImage(img, width, height)
{
	var imageWin = window.open('', 'imageWin', 'toolbar=no,width='+width+',height='+height+',top=100,left=100');
	
	imageWin.document.writeln('<html>');
	imageWin.document.writeln('<title>IT Lean</title>');
	imageWin.document.writeln('<body style="margin: 0px;">');
	imageWin.document.writeln('<img src="'+img+'" border="0" style="margin: 0px;" onClick="window.close();" title="Klik på billedet for at lukke vinduet">');
	imageWin.document.writeln('</boby>');
	imageWin.document.writeln('</html>');
}

function activatemenu(obj) { 
	obj.style.backgroundImage = 'url(/itlean/images/top_menu_background_on.jpg)';
	return true;
}

function deactivatemenu(obj) { 
	obj.style.backgroundImage = 'url(/itlean/images/top_menu_background_off.jpg)';
	return true;
}

