function SetProps(w,h) {

l = ((screen.width - w) /2);
t = ((screen.height - h) /2);

winprops = 'toolbar=0,location=0,status=1,scrollbars=1,width=' + w + ',height=' + h + ',left=' + l + ',top=' + t;
return winprops;
}

function OpenNew(url,w,h) {

SetProps(w,h);

Quote = window.open(url,'popup2',winprops);
Quote.window.focus();
}