 <!-- //Begin

var wheel = new wheel();



function WheelPopup(frmfield) {
            this.frmfield = frmfield;
                var w = 600, h = 700,
	move = screen ?
		',left=' + ((screen.width - w) >> 1) + ',top=' + ((screen.height - h) >> 1) : '',
        o_colWindow = window.open('picker2.html', null, "help=no,status=no,scrollbars=yes,resizable=yes" + move + ",width=" + w + ",height=" + h + ",dependent=yes", true);
	o_colWindow.opener = window;
	o_colWindow.focus();
                
}

function wheel(frmfield) {
        this.popup   = WheelPopup;
}



//End -->