
function openWindow(width, height, xpos, ypos, content, name)
{
     eval("window.open('" + content + "', '" + name + "', 'width=" + width + ",height=" + height + ",resizable=1,top=" + ypos + ",left=" + xpos + ",scrollbars=1');");
}
