version 1.0.6

This commit is contained in:
Jeremy Long
2013-12-01 10:05:10 -05:00
parent f15b1f84b1
commit b4f90c9816
1264 changed files with 297862 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()
}
}