function imgPopup(url, w, h) {
  var imgWin = window.open('', 'url', "width="+w+",height="+h);
  imgWin.document.write(
    '<HTML>'+
    '<HEAD>'+
    '<TITLE>Solutecs</TITLE>'+
    '</HEAD>'+
    '<BODY style="margin: 0px;">'+
    '<IMG src="'+url+'" width="'+w+'" height="'+h+'" onClick="javascript: window.close()"/>'+
    '</BODY>'+
    '</HTML>'
    );
  imgWin.document.close();
  }

function frmShow() {
  document.getElementById('loginform').style.display = 'block';
  document.getElementById('lfspacer').style.display = 'none';
  document.getElementById('Login').focus();
  }