Page reload in commandlink
Hi,
I have a commandlink in my jsf and in that i have following code-
<h:commandLink onclick="getClarify(#{clarifyDetRep.ticketNumber})" id="showTicketDet">
<h:outputText value="#{clarifyDetRep.ticketNumber}" id="column1"/>
</h:commandLink>
Where getClarify is a javascipt that opens new window with ticketNumber as input parameter. Now my problem is, everytime i click on this link,it opens up a new window as expected, but at the same time it reloads the original jsp page with commandlink,,, how can i avoid this reload behaviour? Maybe it is silly but i am not able to figure out...thanks

