<!--
// konfigs

var NA_URL = "nordicaudi.com/";

if (top.frames.length != 2) {

	var endsuffix;
	
    // Get this URL
	var thispage = window.location.href;

	// Find NA-URL inside url
	if ((start = thispage.indexOf(NA_URL)) >= 0) {
	    thispage = thispage.substring(start+NA_URL.length);

		// Do we have any parameters?
		if ((start = thispage.indexOf('?')) > 0) {
			endsuffix = thispage.substring(start+1);
		    thispage = thispage.substring(0, start);

		} else {
			endsuffix = "";
		}

	} else {
		// Ingen giltig katalog, redirecta till framsidan
		endsuffix = "";
	}

	// redirect
	document.location = 'http://' + NA_URL + 'index.php?url=' + escape(thispage) + '&var=' + escape(endsuffix);
}
//-->