function querySt(ji) {
hu = window.location.search.substring(1);
gy = hu.split("&");
for (i=0;i<gy.length;i++) {
ft = gy[i].split("=");
if (ft[0] == ji) {
return ft[1];
}
}
}

if (window.parent.location == window.location) {
var sPath = window.location.pathname;
//var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

if (sPage == 'top_produktlijn.htm') {
	sPage = 'support.htm';
}
if (sPage == 'top_omschrijving.htm') {
	sPage = 'support.htm';
}
if (sPage == 'top_info.htm')  {
	sPage = 'support.htm';
}
if (sPage == 'product.asp')  {
	sPage = 'product.asp?nummer='+querySt("nummer");
}
if (sPage == 'orders_default.asp')  {
	sPage = 'orders_default.asp';
}
window.top.location.replace('default.asp?wv='+sPage);
	}

