/*
			Yogaschool Zeewolde
			
			alle rechten voorbehouden
*/

var isMSI		= false;

function TestW3C()
{
	isMSI = (navigator.userAgent.indexOf('MSIE') != -1 ) ? true : false;		
}

function Afzender( gebeuren )
{
	return ( isMSI ? gebeuren.srcElement : gebeuren.target );
}

function LeesStijlProp( ident, propval )
{
	if ( isMSI )
	{
   	return eval( 'document.getElementById( ident ).currentStyle.' + propval );  
	}
	else
	{
   	return getComputedStyle( document.getElementById( ident ), "" ).getPropertyValue( propval );
	}
}

