
/*
* error console logging function 
* @param log text the message that you want displayed on the error log console
* @return null
*/
function log(msg){
	if(window.console) {
		window.console.log(msg);
		return null;
	} 
	else
	{
		return null;
	}
}