/* ###############################################################									23K SAP GATEKEEPER JS###############################################################*/$(document).ready(function(){	var sap_gatekeeper = function() {	$('a:not(.sap)').each(function() {		var _href = $(this).attr('href'); 		$(this).attr('href', _href + '?auth=1');	});}if (findquerystring('info')) { sap_gatekeeper(); }else if (findquerystring('auth')) { sap_gatekeeper(); }	function findquerystring(qs) {	hu = window.location.search.substring(1);	gy = hu.split("&");		for (i = 0; i < gy.length; i++) {  	ft = gy[i].split("=");    if (ft[0] == qs) {    	return ft[1];    }	}}function refresh(queryString, target) {	if (target == 'parent') {		parent.window.location = baseUrl() + parent.window.location.pathname + queryString;	}	else { window.location = baseUrl() + window.location.pathname + queryString; }}});
