// Custom scripts function openCalenderInfo(id){ var winWidth = 400; var winHeight = 300; var posLeft = (screen.availWidth - winWidth) / 2; var posTop = (screen.availHeight - winHeight) / 2; window.open('calendar_popup.php?id='+id, 'calender_info', 'width='+winWidth+', height='+winHeight+', left='+posLeft+', top='+posTop+', location=no, menubar=no, status=no, scrollbars=auto, resizable=yes'); } function gallery_popup(id,page){ var winWidth = 400; var winHeight = 300; var posLeft = (screen.availWidth - winWidth) / 2; var posTop = (screen.availHeight - winHeight) / 2; window.open('gallery_popup.php?id='+id+'&page='+page, 'gallery_popup', 'width='+winWidth+', height='+winHeight+', left='+posLeft+', top='+posTop+', location=no, menubar=no, status=no, scrollbars=auto, resizable=yes'); }