function openImg(imgFile){
  MyWindow = window.open("", "WebWizard", "status=no,scrollbars=no,resizable=no,Left=100,Top=100, Height=100, Width=100");
  MyWindow.focus();
  
  MyWindow.document.open();
  
  MyWindow.document.writeln('<html><head><title>View Image</title></head><body onload="scale_window()" topmargin="0" leftmargin="0">');
  MyWindow.document.writeln('<form name="viewImg">');
  MyWindow.document.writeln('<a href="javascript:window.close()"><img src="' + imgFile + '" name="imgName" border="0" alt="Click to close"></a>');
  MyWindow.document.writeln('</form>');
  MyWindow.document.writeln('<script language="javascript">');
  MyWindow.document.writeln('function scale_window(){')
  MyWindow.document.writeln('var ImgHeight = viewImg.imgName.height;')
  MyWindow.document.writeln('var ImgWidth = viewImg.imgName.width;')
  MyWindow.document.writeln('if ((ImgHeight > 0) || (ImgWidth > 0))')
  MyWindow.document.writeln('window.resizeTo(ImgWidth + 10, ImgHeight + 29);')
  MyWindow.document.writeln('}');
  MyWindow.document.writeln('</script>');
  MyWindow.document.writeln('</body></html>');
 
  MyWindow.document.close();
}

function openLink(url) {
  if (url != "") {
    var linkObj = document.getElementById("linktoweb");
    linkObj.href = url;
    linkObj.click();
  }
}