$(document).ready(function() {
  $(".rt a").click(function() {
  	cred = $(this).attr('id').split(':');
  	id = cred[1];
  	name = $(this).attr('title');
  	sound = cred[0];
  	type = cred[2];
    p = "height=660,width=600,toolbar=no,directories=no,status=no,scrollbars=auto,resizable=no,menubar=no";
    hWnd=window.open('http://orderpopup.sonnerie.net/external/DrtTop/dl_NEW_ALL_v4.php?f=c_' + type + '&a=ezsms&type=' + type + '&id=' + id + '&son_nom=' + name + '&son_wav=' + sound + '&lang=DE&c=DE',"Hwnd",p);
    hWnd.focus();
  	return false;
  });
});