/**
 * @author User
 */

function printLabel (labelFile, printWidth, printHeight) {
	  var w = open ('', 'printLabel',
		       'menubar=1,locationbar=0,statusbar=0,resizable=1'
		       + ',scrollbars=1,width='+printWidth*100+',height='+printHeight*100+'');
		  var html = '';
		  html += '<HTML><BODY ONLOAD="if (window.print) window.print();">';
		  html += '<IMG SRC="' + labelFile + '" style="width:'+printWidth+'in; height:'+printHeight+'in;">';
		  html += '<\/BODY><\/HTML>';
		  w.document.open();
		  w.document.write(html);
		  w.document.close();
}