<?php
/**************************************************************************
* Eridu - Web based Groupware *
**************************************************************************
* Copyright (c) 2000, The Eridu Project *
**************************************************************************
* This source file is subject to version 2.0 of the GNU GENERAL PUBLIC *
* LICENSE that is bundled with this package in the file COPYING, and is *
* available through the world-wide-web at: *
* http://www.gnu.org/copyleft/gpl.html *
* If you did not receive a copy of the license and are unable to *
* obtain it through the world-wide-web, please send a note to *
* eridu-hide@address.com so we can mail you a copy *
* immediately. *
**************************************************************************
*
* $Id: tasksroot.php,v 1.2 2000/12/05 07:29:56 absolut250 Exp $
*
* Revision History:
* $Log: tasksroot.php,v $
* Revision 1.2 2000/12/05 07:29:56 absolut250
* fixed some paths
*
* Revision 1.1 2000/12/05 05:32:09 lurker
* Changing directory structure
*
* Revision 1.7 2000/12/04 06:42:08 mhroberts
* changed variable names
*
* Revision 1.6 2000/11/30 17:33:20 coldblood
* compose new fixed. Delete image changed to X icon.
*
* Revision 1.5 2000/11/17 21:58:50 mhroberts
* Added uiPreHeader, uiHeader, and uiFooter functions
*
* Revision 1.4 2000/11/15 16:43:44 lurker
* Renameing ISindex to isName
*
* Revision 1.3 2000/11/08 17:07:26 mhroberts
* Finished indenting with tabs instead of spaces
*
* Revision 1.2 2000/11/07 23:17:13 coldblood
* Removed all use of ../
*
* Revision 1.1 2000/11/02 00:49:38 mhroberts
* Added title bar to main task window
*
*/
include ("eridu.conf");
include ("$eriduBasePath/html/lib/uiFunctions.php");
$useTypes=array("calendar");
uiPreHeader ($useTypes);
?>
<SCRIPT language="Javascript">
function newWindow(fileName,windowName,theWidth,theHeight) {
window.open(fileName,windowName,"toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1, width="+theWidth+",height="+theHeight);
}
function openNewWindow(fileName,windowName,theWidth,theHeight) {
newWindow(fileName,windowName,theWidth,theHeight);
}
<?php
drawComposeNewJava("taskList");
?>
</SCRIPT>
<FRAMESET border=5 frameBorder=1 frameSpacing=5 rows=85,100%>
<FRAME marginHeight=2 marginWidth=0 name=taskstitle noResize scrolling=no src="taskstitle.php?isName=<?php echo $isName; ?>">
<FRAME marginHeight=0 marginWidth=0 name=tasksmain src="tasksmain.php?isName=<?php echo $isName; ?>" >
</FRAMESET>