function set_upIE() {
			correctPNG();
}



Element.implement({
    fieldWarning: function(warningText, warningDelay) {

        this.set({
            'value': warningText,
            'styles': {
                backgroundColor: "#fcc"
            },
            'events': {
                focus: function() {
                    this.set({
                        value:  "",
                        styles: {
                            backgroundColor: "#EDEEF3"
                        }
                    }).removeEvents();
                }
            }
        });

        (function() {
            this.fireEvent("focus").removeEvents();
        }).delay(warningDelay, this);
    },
				
    selectWarning: function(warningDelay) {
        this.set({
            'class' : 'attention',
            'events'  : {
                focus: function() {
                    this.set({
                        'value':  "",
                        'class' : 'required'
                    }).removeEvents();
                }
            }
        });
								
       (function() {
            this.fireEvent("focus").removeEvents();
        }).delay(warningDelay, this);

				
				}
				
});





////// WINDOW EVENT



window.addEvent('domready', function() {
									 
				
				//include('http://www.phpjs.org/js/phpjs/_supporters/pj_test_supportfile_2.js');
				/// ---- if IE INIT IE
				if (Browser.Engine.trident && Browser.Engine.version < 7 ) {
					set_upIE();
					is_IE6 = true;
				}
				//set_upIE();		 
});