<!--
function Additional_Questions()
{
	booksCheckbox = document.getElementById('PubGuideRequestContainer1__ctl0_PreviouslyPublished_2');
	if(booksCheckbox.checked)
	{
		document.getElementById('PubGuideRequestContainer1__ctl0_BooksPublishedQuantity').style.display = 'block';
		document.getElementById('PubGuideRequestContainer1__ctl0_PublishingMethod').style.display = 'block';
		document.getElementById('PubGuideRequestContainer1__ctl0_cbxPublishingMethod').style.display = 'block';
		document.getElementById('PubGuideRequestContainer1__ctl0_CopiesSold').style.display = 'block';
		document.getElementById('PubGuideRequestContainer1__ctl0_rblCopiesSold').style.display = 'block';
	}
	else
	{
		document.getElementById('PubGuideRequestContainer1__ctl0_BooksPublishedQuantity').style.display = 'none';
		document.getElementById('PubGuideRequestContainer1__ctl0_PublishingMethod').style.display = 'none';
		document.getElementById('PubGuideRequestContainer1__ctl0_cbxPublishingMethod').style.display = 'none';
		document.getElementById('PubGuideRequestContainer1__ctl0_CopiesSold').style.display = 'none';
		document.getElementById('PubGuideRequestContainer1__ctl0_rblCopiesSold').style.display = 'none';
	}

}

function Clear_List(toClear)
{
	listToClear = document.getElementById(toClear).getElementsByTagName("input");
	for(i = 0; i < listToClear.length; i++)
	{
		listToClear[i].checked = false;
	}
}
//-->

