var popupReady = false;
function isPopupReady() {
return !(popupReady == null || !popupReady);
}
window.addEvent('domready', function() {
var thisPageSearch = location.search;
var searchCheck = thisPageSearch.contains('?');
if(searchCheck) {
var thisPageQuery = thisPageSearch+'&message=loginOverlay';
var currentPageLogin = 'https://'+location.hostname+location.pathname+thisPageQuery;
$ES('.login').setProperty('href',currentPageLogin);
var thisPageExQuery = thisPageSearch+'&message=loginOverlayOverEx';
var currentPageExLogin = 'https://'+location.hostname+location.pathname+thisPageExQuery;
$ES('.loginEx').setProperty('href',currentPageExLogin);
} else if (!searchCheck) {
var thisPageQuery = thisPageSearch+'?message=loginOverlay';
var currentPageLogin = 'https://'+location.hostname+location.pathname+thisPageQuery;
$ES('.login').setProperty('href',currentPageLogin);
}
popupReady = true;
});
My Account - Login |
Register