function opwin(Url,width,height)
{
// Url 
// widht
// height 
// scrollbar 0 yes 1 no 
// resize 0 true 1 false
//width=460,height=200,scrollbar=0,resizable=0
scrollbar=1,resizable=0
ow = width;
oh = height;
os = scrollbar;
or = resizable;
var xposition=0; 
var yposition=0;
if ((parseInt(navigator.appVersion) >= 4 ))
  {
    xposition = (screen.width - width) / 2;
    yposition = (screen.height - height-25) / 2;
  }
  window.open (Url,"","width ="+ow+",height="+oh+",scrollbars = "+os+",resizable="+or+",left="+xposition+",top="+yposition );
} 