function openWin(page, width, height) {
    var winWidth = typeof(width) != 'undefined' && width ? width : 600;
    var winHeight = typeof(height) != 'undefined' && height ? height : 400;
OpenWin = this.open(page, "CtrlWindow", 
"toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,height=" + winHeight + ",width=" + winWidth);
}

function initTooltip(el) {
	el.T_BGCOLOR = '#ffffff';
	el.T_FONTCOLOR = '#65a9b3';
	el.T_BORDERCOLOR = '#d6b36b';
	el.T_BORDERWIDTH = 2;
	el.T_PADDING = 15;
	el.T_FONTSIZE = '12px';
}
