/**
 * Custom js
 *
 * @copyright       .hausformat GmbH
 * @link            http://www.hausformat.com
 */


function closeDetailWindow() {
    if(document.referrer.indexOf(window.location.origin) >= 0) {
        history.go(-1);
    }
    else {
        window.location.href = window.location.origin; // this might just be '/' of your site
    }
}