/*Javascript for history stock quote */
function checkform()
{
	var bval
	bval=true;	
	if(document.frmindexcomp.Indexvalue.value=="")
	{
		alert('Please Select Index.');
		bval=false;
	}
	

	//document.frmsearchquote.action='history-stockquote.asp';
	if(bval)
	{
		document.frmindexcomp.submit();
	}	
	
}


function SubmitIndex(indexval){
	document.frmindexcomp.ind.value=indexval;
	if(checkform()){
		return true;	
	}else{
		return false;
	}
}

function PageNoSubmit(iNo){
	document.frmindexcomp.pageno.value=iNo;
	if(checkform()){
		return true;	
	}else{
		return false;
	}
}

	function detailstock(id,date)
	{
		//alert(id);
		//alert(date);
		//window.location ="http://www.eggheadcafe.com/articles/querystringjs.htm?name="+sName+"&email="+sEmail;
		window.location.href="get-quote.asp?_SCID="+id+ "&copydate="+date;
		
		
		
	}
