/* DATE : 06-OCT-2009
* DESCRIPTION : As per EMAIL
* CREATED BY : ELLS
*/
/***********************START****************************/
FB_RequireFeatures(["XFBML"], function()
{
FB.Facebook.init(document.getElementById("facebook_api_key").value, document.getElementById("facebook_receiver").value);
});
function validateLoginHeader() {
var elem;
if (document.getElementById("userName").value== ""|| document.getElementById("userName").value=="Username" ){
/*alert("Please enter a username.");
document.getElementById("userName").value="";
document.getElementById("userName").focus();
return false;*/
window.location.href="/psn/web/";
}else{
window.location.href="/psn/web/login/submitLogin";
document.forms.loginRouterForm.submit();
}
if (document.getElementById("password").value == "" || document.getElementById("password").value=="Password" ){
/*alert("Please enter a password.");
document.getElementById("password").value="";
document.getElementById("password").focus();
return false;*/
window.location.href="/psn/web/";
}else{
window.location.href="/psn/web/login/submitLogin";
document.forms.loginRouterForm.submit();
}
}
/***********************END****************************/
