var detailsWindow;

function showDetails(url) {
   detailsWindow = window.open("", "newWindow", "width=700, height=600, left=100, top=100");
   
   detailsWindow.document.open();
   detailsWindow.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"><HTML><HEAD><TITLE>&nbsp;</TITLE></HEAD><FRAMESET FRAMESPACING=\"0\" border=\"0\" frameborder=\"0\" id=\"TopWindow\"><FRAME SRC=\"" + url + "\" NAME=\"framebody\"></FRAMESET></HTML>");
   detailsWindow.document.close();
   
   detailsWindow.focus();
   return false;
}

function showNew(url) {
   detailsWindow = window.open("", "", "width=700, height=600, left=150, top=150");
   
   detailsWindow.document.open();
   detailsWindow.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"><HTML><HEAD><TITLE>&nbsp;</TITLE></HEAD><FRAMESET FRAMESPACING=\"0\" border=\"0\" frameborder=\"0\" id=\"TopWindow\"><FRAME SRC=\"" + url + "\" NAME=\"framebody\"></FRAMESET></HTML>");
   detailsWindow.document.close();
   
   detailsWindow.focus();
   return false;
}

function showImage(image,sx,sy) {
   width = sx;
   height = sy;
   detailsWindow = window.open("", "", "width=" + width + ", height=" + height + ", left=150, top=150");
   
   detailsWindow.document.open();
   detailsWindow.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"><HTML><HEAD><TITLE>&nbsp;</TITLE></HEAD><BODY marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 bottommargin=0 rightmargin=0 bgcolor=#d6d6ce><img src=\"" + image + "\" width=\"" + sx + "\" height=\"" + sy + "\" border=\"0\"></BODY></HTML>");
   detailsWindow.document.close();
   
   detailsWindow.focus();
   return false;
}

function showHelp(text,close) {
   detailsWindow = window.open("", "", "width=300, height=300, left=150, top=150");
   
   detailsWindow.document.open();
   detailsWindow.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"><HTML><HEAD><TITLE>&nbsp;</TITLE><link rel=\"stylesheet\" type=\"text/css\" href=\"css/style.css\"></HEAD><BODY bgcolor=#d6d6ce>" + text + "<br><br><a href=\"#\" onclick=\"window.close()\">" + close + "</a></BODY></HTML>");
   detailsWindow.document.close();
   
   detailsWindow.focus();
   return false;
}

function openEditor(from,file) {
   EditorWindow = window.open("word/item.php?from=" + from + "&filename=" + file + "","Editor","width=700,height=720");
}