// jQuery additional element 
// JavaScript pop up Window

$(function(){
$('.winop').click(function(){
window.open(this.href, "data","width=578,height=600,scrollbars=yes,resizable=yes");
return false;
});

});

// end

