function openwin( src,name,width,height )
{

   var win = window.open( src,name,'location=no,resizable=no, width='+width+',height='+height+',top=30,left=30' );
   win.focus();
}



