function openWin(imagename,imgWidth,imgHeight)
  {
  imagewin=window.open(imagename,'imagewin','width=' + imgWidth + ',height=' +imgHeight);
  imagewin.document.write ("<HTML><HEAD><TITLE>Rapid & Reliable IT Solutions</TITLE>\n");
  imagewin.document.write ("</HEAD><BODY>\n");
  imagewin.document.write ("<style type='text/css'><!--body { margin-left: 0px;	margin-top: 0px;}--></style>");
  imagewin.document.write ("<a href='javascript:window.close();'><img src=" + imagename + " border=0></a> \n" );
  imagewin.document.write ("</BODY></HTML>\n" );
  }
  
function OpenWindow(sURL, sName, sWidth, sHeight)
  {
  var theTop=(screen.height/2)-(sHeight/2);
  var theLeft=(screen.width/2)-(sWidth/2);
  window.open(sURL, sName, "width="+sWidth+", height="+sHeight+",top="+theTop+",left="+theLeft+", location=no, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=no");
  }