/*Javascript for history stock quote */
function checkform()
{

	/*var bval
	bval=true;
	
	if(document.frmworldindices.indexval.value=="")
	{
		alert("Please Select Index");
		bval=false;
	}
	
	if(document.frmworldindices.mcap.value=="" && bval)
	{
		alert("Please Select Market Capitalization");
		bval=false;
	}
	
		
	if(bval){
		document.frmworldindices.submit();
	}else{
		return false;
	}*/
	
	document.frmworldindices.submit();
}

function PageNoSubmit(iNo){
	document.frmworldindices.pageno.value=iNo;
	if(checkform()){
		return true;	
	}else{
		return false;
	}
}


