// SBC pros

function openPopupWindow(url, inner_width, inner_height, x_coordinate, y_coordinate, menubar, toolbar, location, status, scrollbars, resizable)
{
 
 var props = "";
 props += "width=" + inner_width + ",";
 props += "height=" + inner_height + ",";
 props += "left=" + x_coordinate + ",";
 props += "top=" + y_coordinate + ",";
 props += "menubar=" + menubar + ",";
 props += "toolbar=" + toolbar + ",";
 props += "location=" + location + ",";
 props += "status=" + status + ",";
 props += "scrollbars=" + scrollbars + ",";
 props += "resizable=" + resizable;
  
 var windowRef = null;    
 windowRef = window.open(url, "", props); 
}
