// dom_check.js
// Check if browser supports W3C DOM 

stdBrowser = (document.getElementById) ? true : false;  // check if browser supports W3C DOM 

if (stdBrowser == false) // if no W3C DOM, warn 
{
	alert(" Warning: \nThis web page may not work right in your browser because \nyour browser does not have a current JavaScript engine! "); 
}
else 
{
	//alert(" W3C DOM check : PASS ");
}
