hocam class ekleyin(shpop) sonra javascript kodunu yazın:
<script>
function shPopup(function(e) { //when the document body is clicked
if (window.event) {
e = event.srcElement; //assign the element clicked to e (IE 6-8)
}
else {
e = e.target; //assign the element clicked to e
}

if (e.className && e.className.indexOf('class_adı') != -1) {
//burada açılış kodunu yazın.
}
});
</script>