<!--
function myOpen(url, windowName, directories, location, menubar, scrollbars, status, toolbar, resizable, width, height, size)
{
var features =
'directories=' + directories +
',location=' + location +
',menubar=' + menubar +
',scrollbars=' + scrollbars +
',status=' + status +
',toolbar=' + toolbar +
',resizable=' + resizable +
',width=' + width +
',height=' + height +
',borderSize=' + size;

window.open (url, windowName, features);
}
//-->