/*
Function module for MSPPHOTO.com
*/

function enlarge(gal_num,pic_num, p_width, p_height)
{
// html for a any enlarged photo from any gallery

	document.writeln('<html>');
	document.writeln('<head>');
	document.writeln('	<title>MSP Photography</title>');
	
	document.writeln('</head>');
	
	document.writeln('<body background="images/bkgrnd_tan.jpg">');
	
	document.writeln('<table cellspacing="0" cellpadding="0" width="700">');
	
	document.writeln('<tr>');
	document.writeln('       <td>');
	document.writeln('	   <p align="center">');
	document.writeln('	       <img src="images/mspbanner.gif" width="336" height="51" alt="MSP Photography" border="0">');
	document.writeln('		   <hr width="350">');
	document.writeln('	       <img src="images/spacer.gif" width="10" height="10" alt="" border="0" ><br>');
	document.writeln('	  </p>');
	document.writeln('	   </td>');
	document.writeln('</tr>');
	document.writeln('<tr>');
	document.writeln('       <td>');
	document.writeln('			<P ALIGN="center">');
	document.writeln('			<img src="images/g' + gal_num + '/p' + pic_num + '.jpg" alt="" border="0" height="' + p_height + '" width="' + p_width + '">');
	document.writeln('			</P>');
	document.writeln('	   </td>');
	document.writeln('</tr>');
	document.writeln('<tr>');
	document.writeln('       <td>');
	document.writeln('	   <p align="center">');
	document.writeln('	   <img src="images/spacer.gif" width="10" height="20" alt="" border="0">');
	document.writeln('	   <br>');
	document.writeln('	   <a href="gallery' + gal_num + '.htm"><img src="images/back_button.gif" width="55" height="20" alt="" border="0"></a>');
	document.writeln('	   </p>');
	document.writeln('	   </td>');
	document.writeln('</tr>');
	document.writeln('</tr>');
	document.writeln('<tr>');
	document.writeln('       <td>');
	document.writeln('	   <p align="center">');
	document.writeln('	   		<br>');
	document.writeln('			<br>');
	document.writeln('			<font size="-2">All images copyright © 2001 MSP Photography.');
	document.writeln('			</font>');
	document.writeln('			<br>');
	document.writeln('	   </p>');
	document.writeln('	   </td>');
	document.writeln('</tr>');
	
	document.writeln('</table>');
	
	document.writeln('</body>');
	document.writeln('</html>');
	document.close();

}
