
function StcConvert(product,price)
{
  var usrate=1.44478;
  var eurorate=1.06378;
  var yenrate=137.855;
  var properties = 'height=370,width=400,menubar=no,toolbar=no,locationbar=no,personalbar=no,directories=no,statusbar=no,scrollbars=no,resizable=yes';
  var W = window.open("","",properties);
	    W.document.writeln('<html><head>');
	    W.document.writeln('<title>' + product + ' pricing <\/title>');
	    W.document.writeln('<link href="/resources/simtec.css" rel="stylesheet" type="text/css"/>');
	    W.document.writeln('<\/head><body class="convert" bgcolor="white">');
	    W.document.writeln('<h1>' + product + ' pricing<\/h1>');
	    W.document.writeln('<p>The ' + product + ' costs &pound;' + price + ' Sterling (excluding VAT and carriage) see <a href="/company/ordering.html">ordering page<\/a> for details');
	    W.document.writeln('<p>Approximate pricing in other currencies');
	    W.document.writeln('<ul>');
	    W.document.writeln('<li>$' + Math.round(price * usrate) + ' (US Dollar)');
	    W.document.writeln('<li>&euro;' + Math.round(price * eurorate) + ' (Euro)');
	    W.document.writeln('<li>&yen;' + Math.round(price * yenrate) + ' (Japanese Yen)');
	    W.document.writeln('<\/ul>');
	    W.document.writeln('<p>Please note that transactions are in pounds Sterling and the actual amount charged will depend on the exchange rate used by your bank.');
	    W.document.writeln('<form><input type="button" ');
	    W.document.writeln('onClick="window.close()" ');
	    W.document.writeln('value="Close Window">');
	    W.document.writeln('<\/form><\/p>');
	    W.document.writeln('<\/body><\/html>');
}
