function view(address) {
var width = 528;
var height = 620;
var xposition = (screen.availwidth-width)/3;
var yposition = (screen.availheight-height)/3;
view = window.open(address,"","width="+width+",height="+height+",toolbar=no,scrollbars=yes,location=no,status=no,resizable=yes");
view.moveTo(xposition,yposition);
}