/**************************************************************************************
*  This file validate the left side menu(Bye or sell option)
*  This file is included in left.php,entertainment.php ,poltis.php ,everythingelse ,trails * *  ,sports.php 
**************************************************************************************/





function chkqty(obj)
{
 if (obj.SBL.value=="")
  {
	  alert("Please Enter the Symbol");
	  obj.SBL.focus();
	  return false;
  }	

if (obj.QTY.value=="")
  {
	  alert("Please Enter the Quantity");
	  obj.QTY.focus();
	  return false;
  }	
if (isNaN(obj.QTY.value))
  {
	  alert("Quantity Should be Numeric");
	  obj.QTY.value="";
	  obj.QTY.focus();
	  return false;
  }			 
if(obj.QTY.value < 0)
 {
	obj.QTY.value=Math.abs(obj.QTY.value);
 }

 if(obj.QTY.value==0)
 {
	alert("Quantity Can't be Zero");
	  obj.QTY.value="";
	  obj.QTY.focus();
	  return false;
 }
}	
function up()
{
var ur=document.tradefrm.SBL.value;
var mm =ur.toUpperCase();
document.tradefrm.SBL.value=mm;
document.tradefrm.SBL.focus();
}
function up2()
{
var ur=document.searchfrm.search.value;
var mm =ur.toUpperCase();
document.searchfrm.search.value=mm;
document.searchfrm.search.focus();
}
function chkqty2(obj)
{
 if (obj.search.value=="")
  {
	  alert("Please Enter the Symbol");
	  obj.search.focus();
	  return false;
  }	
}
