function openWin(url, height, width) {
var w = window.open(url, 'w', 'height=' + height + ', width=' + width + ', status=false, menubar=false, left=20, top=20');
w.focus();
}
