übrigens, das geht alles auch nicht:
con.constructor.show_1 = function(text)
{
alert('foo');
};
window['con'].constructor.show_1 = function(text)
{
alert('foo');
};
window['con'].show_1 = function(text)
{
alert('foo');
};
con.show_1 = function(text)
{
alert('foo');
};
etc....
komischerweise wirft der browser auch keine error (moz)