I have web application in that i have a ajaxTabedinterface,I want open the pop-window when i click on tab-panel for this i have create java script function and i call this function in tab-panel OnclientClick ,and i run the application then it doesn't show Tabs it show just white page only.Here i have post my code what i did please check it once give me any suggestion where i can change the code .....
Tabpanle
<cc1:TabPanel runat="server" HeaderText="Documents" OnClientClick="openwindow(),return false;" ID="TabPanel4">
<ContentTemplate> </ContentTemplate>
</cc1:TabPanel>
Javascript
<script type="text/javascript" language="javascript">
function openwindow() {
retVal = window.open("AllClients.aspx", null, "left=150px,menubar=no, top=150px, width=800px, height=450px, scrollbars=no, status=no, resizable=no");
retval.focus();
}
</script>
please help me how to open a popupwindow on tabpanel onclient click event...