function startWindow(id, title) {
	document.write('<DIV id="'+id+'">');
   	document.write('<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0">');
    document.write('<TR onMouseDown="startDrag(\''+id+'\');" onMouseUp="stopDrag();"><TD WIDTH="3"><DIV ID="w_head_left_shade">&nbsp;</DIV></TD><TD CLASS="windowheader">'+title+'</TD><TD><DIV ID="w_head_right_shade">&nbsp;</DIV></TD></TR>');
	document.write('<TR><TD ID="leftshade">&nbsp;</TD><TD>');
}

function endWindow() {
	document.write('</TD><TD ID="rightshade">&nbsp;</TD></TR>');
	document.write('<TR><TD><DIV ID="w_foot_left_shade">&nbsp;</DIV></TD><TD CLASS="windowfooter" align="right"><DIV ID="w_foot_resize">&nbsp;</DIV></TD><TD><DIV ID="w_foot_right_shade">&nbsp;</DIV></TD></TR>');
    document.write('</TABLE></DIV>');
}
