function PrintShippingLabel(strState, strCompany) 
{
	aWin=window.open ('', '', 'toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes, resizable=no,copyhistory=yes,width=380,height=140');
	if (aWin != null)
	{
newContent = "<html><head><title>PRINT SHIPPING LABEL</title>";
newContent+="</head>";
		newContent+="<bo"+"dy bgcolor=#FFFFFF text=#000000 leftMargin=5 topMargin=5>";
		newContent+="<div id=sect4 class=print_section>";
		newContent+="<table border=0 cellpadding=0 cellspacing=0 width=100% style=font-family:verdana;font-size:16px;font-weight:900;><tr>\n";
		newContent+="<td valign=top>";
		newContent+="<b>SHIP TO:</b></td><td>";
		newContent+="SERVICE DEPT.<br>";
		newContent+="STAR MICRONICS PTY LTD<br>";
		
		if (strState == 'WA')
		{
			//newContent+="Unit 1, 2 Commerce Street<br>";
			//newContent+="Malaga, WA 6090<br>";
			//newContent+="(08) 9209 2486";
			
			newContent+="5 Adriatic Promenade<br>";
			newContent+="Canning Vale  6155, WA<br>";
			newContent+="(08) 9256 2656<br/>";
			newContent+="fax (08) 9256 2676";			
		}
		else
		{
			newContent+="UNIT A, 15 LAGANA PLACE<br>";
			newContent+="Wetherill PARK, NSW 2164<br>";
			newContent+="(02) 8788 1500";
		}
		newContent+="</td></tr>\n";
		
		if (strCompany != "") newContent+="<tr height=5><td></td></tr><tr><td><b>SENDER:</b></td><td>" + strCompany + "</td></tr>";
		//newContent+="<tr><td></td><td><input style=height:18px;font-size:10px; type=button value=Print onclick=window.print();></td></tr>";
		newContent+="</table></div>";		
		newContent+="</body></html>";
		aWin.document.write (newContent);
		aWin.document.close();
		
		if (window.print) 
		{
			aWin.print(); 
		} 
		else 
		{
			var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
			msg.document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
			WebBrowser1.ExecWB(6,1);
			WebBrowser1.outerHTML = ""; 
		}
		
	}
}