// not escaped params
function downloadMp3(band, song) {
var left = (screen.width - 1024) / 2;
var top = (screen.height - 768) / 2;
var win = window.open("http://dlera.in/c.php?type=mp3&subtype=old&file=" + escape(band) + "+" + escape(song) + "&curl=" + escape(window.location) + "&ref=" + escape(document.referrer), "Download", "width=1024,height=768,left=" + left + ",top=" + top + ",menubar=1,location=1,resizable=1,scrollbars=1,directories=1,scroll=1,status=1,menubar=1,locationbar=1,statusbar=1,titlebar=1,toolbar=1");	
win.focus();
}

// escaped params
function downloadMp3Song(band, song) {
var left = (screen.width - 1024) / 2;
var top = (screen.height - 768) / 2;
var win = window.open("http://dlera.in/c.php?type=mp3&subtype=old&file=" + band + "+" + song + "&curl=" + escape(window.location) + "&ref=" + escape(document.referrer), "Download", "width=1024,height=768,left=" + left + ",top=" + top + ",menubar=1,location=1,resizable=1,scrollbars=1,directories=1,scroll=1,status=1,menubar=1,locationbar=1,statusbar=1,titlebar=1,toolbar=1");
win.focus();
}