
function addListener(element, type, expression, bubbling)
{
	bubbling = bubbling || false;
	if ( type.indexOf('on') == 0 )
		type = type.substr(2, type.length );
	
	if(window.addEventListener) { // Standard		
		element.addEventListener(type, expression, bubbling);
		return true;
	} else if(window.attachEvent) { // IE
		element.attachEvent('on' + type, expression);
		return true;
	} else return false;
}

if (typeof(FormInputExample) != "undefined")
	FormInputExample.addEvent = addListener;

addListener( window, 'load', function() { 
	var srcInput = document.getElementById('AsiaPostCode');
	if ( srcInput )
	{
		setTimeout(
			function() {
				new FormInputExample( srcInput, I18N._('Your post code or city'), 'demostring' );
			}, 500	);
		
	}
} );

