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();
}

function resizeIframe(x)
{
   try { x.scrolling='no',x.style.height=x.contentWindow.document.body.scrollHeight+30+'px' } catch(x){}
}

