<!--
//PopUp Window
function popUpImg(strURL) { 
	properties = getImgProperties(strURL);
	myWin = open(strURL, "","status=no,toolbar=no,scrollbars=yes,resizable=1,menubar=no,screenX=0,screenY=0,"+properties);
}
function getImgProperties(strURL){
  img = new Image();
  img.src = strURL;
  if(img.width!=0){
	  imgWidth = img.width+40;
	  imgHeight = img.height+40;
  }
  else{
	  imgWidth = 400;
	  imgHeight = 200;
  }
  return "width=" + imgWidth + ",height=" + imgHeight;
}


function popUp(strURL,strType,strHeight,strWidth) {
	var strOptions="";
	if(strWidth==0){strWidth = 420;}
	if(strHeight==0){strHeight = 300;}
	if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	if (strType=="") strOptions="status=no,toolbar=no,scrollbars=yes,resizable=1,menubar=no,screenX=0,screenY=0,,height="+strHeight+",width="+strWidth;
	window.open(strURL, 'newWin', strOptions);
}


//-->