function reply(obj)
{
/* This effect by Raman Singla. I call it the "Learn More Effect" */
var lm;
lm = document.getElementById(obj);
if(lm.style.display == "inline")
lm.style.display = "none";
else
lm.style.display = "inline";
} 

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=600,height=300');");
}

function browser_detection()
{
	var browserName=navigator.appName;
	if (browserName=="Microsoft Internet Explorer")
	{
		window.location="no_ie.html";
	}
}