Fixed name in popup javascript window

This commit is contained in:
martin
2002-09-16 07:03:33 +00:00
parent af90e74e59
commit 7185779262
+1 -1
View File
@@ -8,7 +8,7 @@ function fillmessagebox(text) {
function openpopup(url,name,height,width) {
fullurl = "<?=$CFG->wwwroot ?>" + url;
options = "menubar=0,location=0,scrollbars,resizable,width="+width+",height="+height;
windowobj = window.open(fullurl,"name", options);
windowobj = window.open(fullurl,name, options);
windowobj.focus();
}