function popup(width,height)
{
	if
	(window.innerWidth)
		{
		LeftPosition =(window.innerWidth-width)/2;
		TopPosition =((window.innerHeight-height)/4)-50;
		}
	else
		{
		LeftPosition =(parseInt(window.screen.width)-	width)/2;
		TopPosition=((parseInt(window.screen.height)-height)/2)-50;
		}
	attr = 'resizable=no,scrollbars=no,width=' + width + ',height=' +
	height + ',screenX=300,screenY=200,left=' + LeftPosition + ',top=' +
	TopPosition + '';
	popWin=open('', 'new_window', attr);
	popWin.document.write('<head><title>The Heritage of Mexico: Volume 3</title></head>');
	popWin.document.write('<body><div align=center>');
	popWin.document.write('<p><IMG src="images/hmv3flyer.jpg" alt="The Heritage of Mexico: Volume 3" name="prodImage" border="0"></p>');
  	popWin.document.write('<a href="javascript:window.close();"><img src="images/close.gif" vspace="5" width="95" alt="Close window" hspace="0" align="middle" height="20" border="0" /></a>');
	popWin.document.write('</div></body></html>');
}
//-->