//-------------------------------------------------
// Created By		: Prashant Kumar
// Created On		: 24/01/2007
// Functionality	: General javascript functions for website.
//-------------------------------------------------

function newwin(URL)  //pop up window
{
	winprops = 'height=100,width=350,scrollbars=no,resizable=no,menu=no,titlebar=no,left=300,top=200';
	window.open(URL,'Nokia M Blog',winprops);
}

function ValidateFields() //used in login page
{
	if(document.getElementById("UserLogin1_txtUser").value == "" || document.getElementById("UserLogin1_txtPassword").value == "")
	{
		alert('Please fill User Name and Password');
		return false;			
	}
}

function SubmitLogin(objValue) //used in login page
{ 
	if (window.event.keyCode == 13) 
	{ 
		event.returnValue=false; 
		event.cancel = true; 
		event.bubble=false; //var 
		var Button1=document.getElementById(objValue); 
		Button1.click(); 
	}
 }
