initial release

This commit is contained in:
Jeremy Long
2013-08-07 22:09:06 -04:00
parent 80737a9396
commit f87d5a6fc0
1133 changed files with 263356 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()
}
}