function enlargePic( thePicLink, theDescription, theInvNum ) {
	var thePreview = window.open( "", 'PicPreview', "width=300,height=380,scrollbars=0,statusbar=0" );

	thePreview.document.write('<html>');
	thePreview.document.write('<head>');
	thePreview.document.write('<title>Tom Lee Music - '+ theDescription +'</title>');
	thePreview.document.write('<link href="/cssV2/tlm_default.css" rel="stylesheet" type="text/css">');
	thePreview.document.write('</head>');
	thePreview.document.write('<body><table border="0" width="90%" align="center" cellpadding="5" cellspacing="0">');
	thePreview.document.write('<tr><td align="center" valign="middle">');
	thePreview.document.write('<h1><strong>'+ theDescription +'</strong></h1>');
	thePreview.document.write('<h3>Product #'+ theInvNum +'</h3>');
	thePreview.document.write('</td></tr>');
	thePreview.document.write('<tr><td align="center" valign="middle">');
	thePreview.document.write('<a href="#" onclick="window.close();"><img src="'+ thePicLink +'" border="0"></a>');
	thePreview.document.write('</td></tr>');
	thePreview.document.write('<tr><td align="center" valign="middle">');
	thePreview.document.write('<a href="#" onclick="window.close();" class="navLink"><span class="smallPrint">Close Window</span></a>');
	thePreview.document.write('</td></tr>');
	thePreview.document.write('</table></body>');
	thePreview.document.write('</html>');
	thePreview.document.close();
}
