download this file: func.javascript.php view text/plain: func.javascript.php file encoding: EUC-KR [goback]
<?php
##
## ÀÚ¹Ù½ºÅ©¸³Æ® ÇÔ¼ö
## ÀÛÀº âÀ¸·Î OpenÇÏ¿© ±Û Àб⠿ë
##
function javas_openwin($menubar=0, $toolbar=0, $name='openwin')
{
return <<<_EOP_
\n<SCRIPT LANGUAGE='javascript'>
<!--
function ${name}(url,width,height)
{
var window_left = (screen.width-600)/2;
var window_top = (screen.height-500)/2;
window.open(url,"$name",'width=' + width + ',height=' + height + ',status=no,scrollbars=no,resizable=yes,toolbar=$toolbar,menubar=$menubar,top=' + window_top + ',left=' + window_left + '');
}
//-->
</SCRIPT>\n
_EOP_;
}
?>