function newWin(urlLoc) {
  var _temp = "";
  _winName = "MyNewWindow";
  _info = "toolbar=no";// yes|no 
  _info += ",location=no";// yes|no 
  _info += ",directories=no";// yes|no 
  _info += ",status=no";// yes|no 
  _info += ",menubar=no";// yes|no 
  _info += ",scrollbars=auto"// auto|yes|no 
  _info += ",resizable=no";// yes|no 
  _info += ",dependent";// close the parent, close the popup, omit if you want otherwise 
  _info += ",height=149";
  _info += ",width=502";
  _info += ",left=100";
  _info += ",top=100";
  DispWin=window.open(urlLoc,_winName,_info);
  _temp += "<link href=library/styles.css rel=stylesheet type=text/css>";
  _temp += "<html><head></head><body leftmargin=1 topmargin=1 marginwidth=1 marginheight=1>";
  _temp += "<table width=500 border=0 cellspacing=2 cellpadding=0>";
  _temp += "<tr>";
  _temp += "<td><table width=100% border=0 cellpadding=0 cellspacing=0 bgcolor=#990000>";
  _temp += "<tr>";
  _temp += "<td width=7%><div align=left><font color=#FFFFFF><strong>&nbsp;&nbsp;&nbsp;&nbsp;Welding and Technical Consultation</strong></font></div></td>";
  _temp += "</tr>";
  _temp += "</table>";
  _temp += "<table width=100% border=0 cellspacing=0 cellpadding=0>";
  _temp += "<tr> ";
  _temp += "<td><img src=images/blank.gif width=1 height=2></td>";
  _temp += "</tr>";
  _temp += "<tr>"; 
  _temp += "<td bgcolor=#999999><img src=images/blank.gif width=1 height=1></td>";
  _temp += "</tr>";
  _temp += "<tr>";
  _temp += "<td bgcolor=#ECEADF><table width=100% border=0 cellspacing=2 cellpadding=0>";
  _temp += "<tr valign=top> ";
  _temp += "<td width=1% height=30><div align=center></div></td>";
  _temp += "<td width=97%>Staffed by experienced engineers and Technicians, Sin Soon Huat Ltd has the solution to all your welding needs. We provide technical consultation and work together with customers toward solving welding related problems and helps lowering the welding costs by facilitating creative solutions.";
  _temp += "<br> <br> <strong>Let the technical support help you by:</strong><br>";
  _temp += "Faxing your questions to: +65 6261 9798; or<br>";
  _temp += "Submitting your questions via our <a href='javascript:opener.document.location=\"enquiry.htm\",window.close();'>online form</a></td>";
  _temp += "<td width=2%><div align=center></div></td>";
  _temp += "</tr>";
  _temp += "</table></td>";
  _temp += "</tr>";
  _temp += "<tr>"; 
  _temp += "<td bgcolor=#999999><img src=images/blank.gif width=1 height=1></td>";
  _temp += "</tr>";
  _temp += "</table></td>";
  _temp += "</tr>";
  _temp += "</table>";
  _temp += "</body></html>";
  DispWin.document.open();
  DispWin.document.write(_temp);

  DispWin.document.close();
} 
