// JavaScript Document

function openPic(pic) {
  
  smallPicWindow=open("","smallPicWindow","menu=no,status=no,resizable=yes,width=1024,height=768,scrollbars=yes");

  smallPicWindow.document.open();
  smallPicWindow.document.write("<html><head><title>Planworks Design Projects</title></head><body>");
  smallPicWindow.document.write("<table width='100%' height='100%'><tr><td valign='middle' align='center'><img src='"+pic+"' style='border: 1px solid #000000;'></td></tr></table></body></html>");
  smallPicWindow.document.close();
  
  if (window.focus) {smallPicWindow.focus()}
}


function changePic(source, caption) {
	
	document.img_main.src = source;
	document.img_form.img_caption.value = caption;
	window.scrollTo(0,0);
}

function getBig() {
	
	var bigImgSrc, bigImgArray, pic
	
	bigImgSrc = document.img_main.src;
	bigImgArray = bigImgSrc.split("/med");
	pic = bigImgArray[0] + bigImgArray[1];
	
  smallPicWindow=open("","smallPicWindow","menu=no,status=no,resizable=yes,width=1024,height=768,scrollbars=yes");

  smallPicWindow.document.open();
  smallPicWindow.document.write("<html><head><title>Planworks Design Projects</title></head><body>");
  smallPicWindow.document.write("<table width='100%' height='100%'><tr><td valign='middle' align='center'><img src='"+pic+"' style='border: 1px solid #000000;'></td></tr></table></body></html>");
  smallPicWindow.document.close();
  
  if (window.focus) {smallPicWindow.focus()}
	
	

}
