function ticket()
	{
		var w = 750;
		var h = 600;

		l = ((screen.width / 2) - (w / 2))
		t = ((screen.height / 2) - (h / 2))

		t -= 30;

		var newWin = window.open( 
"http://www.inventoryclerk.com/ticket/", "", "width=" + w + ", height=" + h
+ ",left=" + l + ",top=" + t +
",status=no,resizable=yes,scrollbars=yes" );
//
		newWin.focus();

		return;
	}