/* 
Compiled  : 09.12.2009 15:14:10
Author    : Marc Janin (iguana.lu)
Copyright : www.iguana.lu
Contact   : For any questions, contact me by iguana.lu!
 */
function Print() {var me = this;me.btnPrint = dojo.byId('btnPrint');dojo.connect(me.btnPrint, 'onclick', null, function(event) {dojo.stopEvent(event);alert('Please use "Print Preview" in your Webbrowser, before printing.\n\n'+'Tip: Maybe in your firefox the "content" is cut off after one page,\n'+'     in this case please try with Internet Explorer...');});};dojo.addOnLoad(window, function() {new Print();});
