Hi:
I could not find the below in the clientscript/vbulletin-core.js for the below:
/**
* Confirms log-out request
*
* @param string Log-out confirmation message
*
* @return boolean
*/
function log_out(confirmation_message)
{
var ht = document.getElementsByTagName("html")[0];
ht.style.filter = "progid

XImageTransform.Microsoft.BasicImage(gray scale=1)";
if (confirm(confirmation_message))
{
return true;
}
else
{
ht.style.filter = "";
return false;
}
}
Please help!
Victor