var myparam = 1;
var myregexp = /Catg(\d+)/i;
var match = myregexp.exec(window.location.href);
if (match != null) {
	myparam = match[1];
//	alert ();
} else {
	myparam = "1";
}

document.write("<table border='0'><tbody style='line-height:1.4em'>  <tr>    <td><img src='http://www.qxl.no/contents/no/images/qxl/ikon_1kr.gif' width='30' height='30'></td>    <td>Auksjoner med<br>        <a style='text-decoration: underline'  href='http://www.qxl.no/search/search.asp?catg="+myparam+"&ListingType=3'><strong>Startpris        1 kr</strong></a>    </td>  </tr>  <tr>    <td><img src='http://www.qxl.no/contents/no/images/qxl/ikon_nye.gif' width='30' height='30'></td>    <td>Auksjoner som <br>      <strong><a style='text-decoration: underline'  href='http://www.qxl.no/search/search.asp?catg="+myparam+"&ListingType=4&Listingsort='>Akkurat startet</a></strong></td>  </tr>  <tr>    <td><img src='http://www.qxl.no/contents/no/images/qxl/ikon_slutter_snart.gif' width='30' height='30'></td>    <td>Auksjoner som <br>      <strong><a style='text-decoration: underline'  href='http://www.qxl.no/search/search.asp?catg="+myparam+"&listingtype=7'>Slutter snart</a></strong></td>  </tr>  <tr>    <td><img src='http://www.qxl.no/contents/no/images/qxl/ikon_flest_bud.gif' width='30' height='30'></td>    <td>Auksjoner med <br>      <strong><a style='text-decoration: underline'  href='http://www.qxl.no/search/search.asp?catg="+myparam+"&ListingType=1&ListingSort=6'>Flest bud</a></strong></td> </tr><tr><td><img src='http://www.qxl.no/contents/no/images/qxl/ikon_fastpris.gif' width='30' height='30'></td>    <td>Auksjoner med<br>        <a style='text-decoration: underline'  href='http://www.qxl.no/search/search.asp?catg="+myparam+"&ListingType=1&ArticleType=3'><strong>Fastpris</strong></a>    </td></tr></tbody></table>");

