function rotatepics(photo, height, width)
{
   document.getElementById('displayimage').innerHTML=
          "<img src=\"photos/" + photo + 
	  "\" border=\"2\" " +
	  "\" height=\"" + height + "\" " +
	  "\" width=\"" + width + "\" " +
	  "alt=\"\">\n";
}
