function openPic (picture, picWidth, picHeight) {
	var newWindow;
	var pageRoot = "http:\/\/www.awardkitchenrefacers.ca\/"
	var Title = "Larger Image:  " + picture;
	var windowWidth = eval (picWidth);
	var windowHeight = eval (picHeight) + 50;
	newWindow = window.open("", "newWindow","width=" + windowWidth + ",height=" + windowHeight + ",left=10,top=10");
	newWindow.document.open();
	newWindow.document.write('<html>');
	newWindow.document.write ('<head>');
	newWindow.document.write('<title>' + Title + '<\/title>');
	newWindow.document.write('<link rel=\"stylesheet\" type=\"text\/css\" href=\"' + pageRoot + 'CSS\/standard.css\">');
	newWindow.document.write ('<\/head>');
	newWindow.document.write('<body style="background:  none;  background-color:  #FFFFFF">'); 
	newWindow.document.write ('<p style=\"text-align:  center;  margin-bottom:  5px;\">');
	newWindow.document.write('<img src=\"' + pageRoot + 'Dreams_images\/' + picture + '\" width=\"' + picWidth + '\" height=\"' + picHeight + '\" alt=\"' + Title +'\" \/>'); 			
	newWindow.document.write ('<\/p>')
	newWindow.document.write ('<p style=\"text-align: center;  margin-bottom:  2px;\"><a href=\"javascript:self.close()\">Close This Window<\/a><\/p>');
	newWindow.document.write ("<\/body>");
	newWindow.document.write ("<\/html>");
	newWindow.document.close();
	newWindow.focus();
}