<!--
function popup(width,height,img){
	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=yes,width=' + width + ',height=' +
	height + ',screenX=300,screenY=200,left=' + LeftPosition + ',top=' +
	TopPosition + '';
	popWin=open('', 'new_window', attr);
	popWin.document.write('<head><title>' + img + ' Parade Home - Richards Construction</title></head>');
	popWin.document.write('<link href="styles.css" rel="stylesheet" type="text/css">');
	popWin.document.write('<body><div align=center>');
	popWin.document.write('<img src="images/' + img + '" border=2 style="border-color:#000000;" >');
	popWin.document.write('<input type="button" name="closeBtn" value="Close Window" onMouseUp="window.close();">');
  	popWin.document.write('</div></body></html>');
	}
//-->
