function DetailWindow(url,name,w,h) {

var l = (screen.width - w) / 2;
var t = (screen.height - h) / 2;
window.open(url,name,'width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',resizable=yes,scrollbars=yes,toolbar=yes,menubar=yes,status=no,location=yed,screenX=10,screenY=10;');

} 