Ext.onReady(function() {
    var doAlign = function(){
        win.setPagePosition((document.documentElement || document.body).scrollWidth - 155, (document.documentElement || document.body).scrollTop + 400);
    };
    
	var idDomNode = Ext.get("req-param-restid");
	var restId = '';
	if (idDomNode) {
		restId = idDomNode.dom.innerHTML;
	}

    var win = new Ext.Window({
    	 x:(document.documentElement || document.body).scrollWidth - 155
    	,y:400
        ,width:150
        ,height:80
        ,shadow:false
        ,border:false
        ,draggable:true
        ,resizable:false
        ,closable:false
        ,collapsible:true
        ,title:'Book'
        ,html:'<div style="line-height:18px;">' +
        		"<div><a href='javascript:void(0)' onclick='showRestaurantBookingForm(\""+restId+"\");' style='padding:2px 0 0 20px; height:16px; background:url(/shared/sir/images/page_white_edit.png) no-repeat top left;'>Book this restaurant</a></div>" +
        		'<div><style> html .hotline_link { margin-left:1px; padding:2px 0 0 19px; height:16px; background:url(/shared/sir/images/phone2.png) no-repeat top left; color:#0464BB; }</style><span class="hotline_link">(+65) 6699 7071</span></div>' +
        		'</div>'
    });
    win.show();
    Ext.EventManager.on(window, 'scroll', doAlign, window, {buffer: 50});
});
