/*Javascript for history stock quote */
function checkform()
{
	
	bval=true;	
	if(document.frmipofpoupdate.period.value=="")
	{
		alert('Please Select Period');
		bval=false;
	}
	
	//document.frmsearchquote.action='history-stockquote.asp';
	if(bval)
	{
		document.frmipofpoupdate.submit();
	}
	else
	{
		return false;
	}
}


function SubmitIndex(indexval){
	document.frmipofpoupdate.ind.value=indexval;
	if(checkform()){
		return true;	
	}else{
		return false;
	}
}

function PageNoSubmit(iNo){
	document.frmipofpoupdate.pageno.value=iNo;
	if(checkform()){
		return true;	
	}else{
		return false;
	}
}

