<!--Begin
var docwin = null;
function NewWindowDocs(doc,w,h) {
 NewWindowDocsClose();
 sdstitle = "Surface Exploration Geochemistry - Key Notes on <I>GEL<\/I>";
 petrosystitle = "";
 envirochemtitle = "";
 contents = "<HTML>\n<HEAD>\n<TITLE>Print document<\/TITLE>\n" +
            "<\/HEAD>\n<BODY bgcolor=\"#CCCC99\" text=\"#000000\">\n" +
            "<FONT face=\"trebuchet ms\" size=\"2\">\n<DIV align=\"center\">\n" +
            "<BR>A printable version of <B>" + (doc=='sds' ? sdstitle : (doc=='petsys' ? petrosystitle : envirochemtitle)) + "<\/B>" +
            " is available in the following formats:<BR><BR>\n" +
            "<A href=\"../docs/" + doc + ".doc\" target=\"_blank\">\n" +
            "<IMG src=\"imgs/wordico.gif\" alt=\"MS Word\" border=\"0\" align=\"absbottom\"><\/A> &nbsp; or &nbsp;\n" +
            "<A href=\"../docs/" + doc + ".pdf\" target=\"_blank\">\n" +
            "<IMG src=\"imgs/pdfico.gif\" alt=\"Acrobat Reader-PDF\" border=\"0\" align=\"absbottom\"><\/A>\n" +


            "<BR><BR>\nNOTE: If you would like to download and print the document, right mouse click over" +
            " your preferred format and select \"Save Target As..\" or \"Save Link As..\"." +
            "<BR><BR>\n <A href=\"javascript:window.close()\">\n" +
            "Close window<\/A>\n<\/DIV>\n<\/FONT>\n<\/BODY>\n<\/HTML>";

 options = "toolbar=0,status=0,menubar=0,scrollbars=1,resizable=0,location=0,width=" + w + ",height=" + h + ",screenX=1,screenY=1,top=1,left=1";
 docwin = window.open("","",options);
 docwin.document.write(contents);
 docwin.document.close();
}
function NewWindowDocsClose() {
 if (docwin != null && !docwin.closed) docwin.close();
}
//--End-->

