//new window open
function openwin(url, status) {
 h = screen.height;
 w = screen.width;
 wind =window.open('', 'openwin','top='+(screen.height/2-330)+',left='+(screen.width/2-260)+',toolbar=no,location=no,status=no,titlebar=no,menubar=no,scrollbars=no,resizable=yes,width='+w+',height='+h);

wind.document.open();
  wind.document.write("<html>");
  wind.document.writeln("<head>");
  wind.document.writeln("<title>"+status+"</title>");
  wind.document.writeln("</head>");
  wind.document.writeln("<body BGCOLOR=#34312E LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>");
  wind.document.writeln("<center>");
  wind.document.writeln("<iframe  height='100%' style='width: 100%; height:100%' scrolling='yes' frameborder='0' src='"+url+"'>");
  wind.document.writeln("</iframe>");
  wind.document.writeln("</center>");
  wind.document.writeln("</body>");
  wind.document.writeln("</html>");
  wind.document.close();  
  window.document.statusbar.enable = false;
 wind.focus(); if (wind.opener == null) { wind.opener = window; };
  wind.document.title = status;
 
}
