If the if condition is page dependent use
if (_condition(booleanExpression))
Eg.
if (document.loginForm.userName == "karthik"){...}
should be written as
if (_condition(document.loginForm.userName == "karthik")){...}
_condition need not be added if the condition does not depend on any page’s DOM.