<!-- Begin
function Startwith(page, windowname) {
OpenWin = this.open(page, windowname, "left=20,top=20, toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
}

function Startwithsize(page, windowname, tall, wide) {
OpenWin = this.open(page, windowname, "height=" + tall + ",width=" + wide + ",left=20,top=20,toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
}

function Startwithout(page) {
OpenWin = this.open(page, "CtrlWindow", "left=20,top=20, toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

function Startwithoutsize(page, windowname, tall, wide) {
OpenWin = this.open(page, windowname, "height=" + tall + ",width=" + wide + ",left=20,top=20,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}
// End -->
