0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
wordpress
/
plugins
/
podcasting
/
js
/
[
Home
]
File: tsg_new_window.js
var windowSizeArray = [ "width=460,height=230", "width=460,height=460,scrollbars=yes" ]; jQuery(document).ready(function($){ $('.newPlayerWindow').click(function (event){ var url = $(this).attr("href"); var windowName = "popUp";//$(this).attr("name"); var windowSize = windowSizeArray[ $(this).attr("rel") ]; window.open(url, windowName, windowSize); event.preventDefault(); }); });