function showInfo( type )
{

 trkMsg = 'A tracking number is a unique number used to identify a package. The number can be  used with our tracking system to retrieve route and time information as the package approaches its destination.';
 refMsg = 'A reference number is a unique number provided by the customer used to identify a package. The number can be used with our tracking system to retrieve route and time information as the package approaches its destination.';

 win = window.open('','','height=200,width=300,personalbar=no,scrollbar=yes,toolbar=no,menubar=no,statusbar=yes');
 
 win.document.writeln("<html><head><link rel=\"stylesheet\" href=\"css/topstyle1.css\" type=\"text/css\"></head><body bgcolor='#2858B0' text='#ffffff'>");
 
 if( type == 'ref' ) {
	 //win.document.defaultStatus=title;
	 win.document.writeln('<h3>Reference Number</h3>');
	 win.document.writeln( '<p>' + refMsg );  	 
 }
 else {
	 //win.document.defaultStatus=title;
	 win.document.writeln('<h3>Tracking Number</h3>');
	 win.document.writeln( '<p>' + trkMsg );   
 }
  
 win.document.writeln( '<p align=center>[<a class=\"closeLink\" href=\"#\" onClick=\"javascript:window.close();\">Close</a>]' );
 win.document.writeln("</body></html>");
 win.focus();
}
