/**
 * redirect browser
 * 
 * @param location new url
 */
function redirect(location){
    window.location.href=location;
}
var btn = ['Speichern', 'Abbrechen'];
/**
 * hide all shop state field by classname
 * 
 *  @returns void
 */
function hideShopStatus(){
    YDom.setStyle(YDom.getElementsByClassName('shopStatus'), 'display', 'none');
}
var statusShopOpen = function(){    
    YDom.setStyle(YDom.getElementsByClassName('shopStatusOpen'), 'display', '');
};
var statusShopClosed = function(){    
    YDom.setStyle(YDom.getElementsByClassName('shopStatusClosed'), 'display', '');
};
var statusShopNoShipment = function(){
    YDom.setStyle(YDom.getElementsByClassName('shopStatusNoShipment'), 'display', '');
};
var statusShopShipment = function(){
    YDom.setStyle(YDom.getElementsByClassName('shopStatusShipment'), 'display', '');
};
var statusShopPickup = function(){
    YDom.setStyle(YDom.getElementsByClassName('shopStatusPickup'), 'display', '');
};
/**
 * page is loaded
 * 
 * @returns void
 */
var initPage = function () {
    hideShopStatus();    
    var data = 'shopId=' + shopId;
    _ajaxSendPost('?event=xhrStartPageInit', data);
};

