// JavaScript Document
function popWin (location,title,ih,iw) 
{

  var h = ih + 130;
  var w = iw + 50;
  var nu_window = window.open(location,'SCG','left=20,top=20,width='+w+',height='+h+',toolbar=0,resizable=0');
  
  nu_window.resizeTo(w,h);
  return true;
}

