﻿
// Global Quick Links on error page - must be placed in header!
gQuickLinks = new Array();
gQuickLinks[''] = "";

try {
		winLoc=window.location+"";
		regexpWinLoc=new RegExp("/$");
		winLocTrimmed=winLoc.replace(regexpWinLoc, ""); // odstran koncove lomitko z request URL 
		if (gQuickLinks[winLocTrimmed] != undefined) {
			window.location = gQuickLinks[winLocTrimmed];
		}

} catch(e) {} 


