// JavaScript Document
function changePageLength(len){

document.getElementById("tableContainer").style.height = len +"px";

document.getElementById("divContent").style.height = (len-310)+"px";

document.getElementById("divBottomBanner").style.top = (len-100)+"px";
document.getElementById("tdBottomCopyright").style.top = (len-20)+"px";

}
var defaultPage=1;
var win = null;

function newWindow(mypage,myname,w,h,features) {
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += features;
  win = window.open(mypage,myname,settings);
  win.window.focus();
}
function popup(linkName, windowName, windowWidth, windowHeight, leftOffset, topOffset){
	var windowWidth = windowWidth;
	var windowHeight = windowHeight;
	
	var dimensions = 'width = ' + windowWidth + ', height = ' + windowHeight;
	var position = 'left = ' + leftOffset + ', top = ' + topOffset;
	
	var extras = dimensions + ', ' + position;
	
	window.open(linkName, windowName, extras);
	return false;
}
function targetOpener(linkName, closeWindow, closeOnly){
		//alert("inside closeWindow=true");
	if(!(window.focus && window.opener)){
		return true;
	}
	if(!closeOnly){
		
		window.opener.location.href = linkName;
	}
	if(closeWindow){
	
		window.close();
	}
	return false;
}
function photoGallery(photoPath,picUrl_1,pic1_W,pic1_H, picUrl_2, pic2_W, pic2_H,picName_1, picName_2, text_1, text_2){

  document.writeln("<tr><td  align=\"left\" valign=\"top\">");
  document.writeln("<table width=\"566\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
  document.writeln("<tr><td width=\"132\" align=\"center\" ><a href=\"#null\" onClick=\"newWindow('imageViewer.php?file="+photoPath+picUrl_1+".jpg&&desc="+text_1+"','','"+eval(pic1_W+120)+"','"+eval(pic1_H+125)+"','scrollbars,status')\"> <img src=\""+photoPath+picUrl_1+".jpg\" width=\"90\" height=\"67\">");
  document.writeln("</a></td><td width=\"165\" align=\"left\"><p>"+picName_1+" </p></td>");
 if (picUrl_2==""){
  	  document.writeln("<td width=\"132\" align=\"center\" ><a href=\"#null\" ></a>");
  	  document.writeln("</a></td><td width=\"165\" align=\"left\"><p>"+picName_2+"</p></td>");	
 }
 else{
 	  document.writeln("<td width=\"132\" align=\"center\" ><a href=\"#null\" onClick=\"newWindow('imageViewer.php?file="+photoPath+picUrl_2+".jpg&&desc="+text_2+"','','"+eval(pic2_W+120)+"','"+eval(pic2_H+125)+"','scrollbars,status')\"> <img src=\""+photoPath+picUrl_2+".jpg\" width=\"90\" height=\"67\">");
  	  document.writeln("</a></td><td width=\"165\" align=\"left\"><p>"+picName_2+"</p></td>");
 }

  document.writeln("</tr>");
  document.writeln("<tr><td><p></p></td></tr>");
  document.writeln("</table></td></tr>");
      
}


