version 1.2.7 of site documentation

This commit is contained in:
Jeremy Long
2014-12-07 16:39:21 -05:00
parent 6e10ac1387
commit 3b0099eb60
1725 changed files with 411098 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
var newwindow;
function popupwindow(url)
{
newwindow=window.open(url,'name','height=500,width=500,resizable=yes,scrollbars=yes');
if (window.focus) {
newwindow.focus()
}
}