function selectCheckBox(checkBoxId)
{
	var checked = document.getElementById(checkBoxId + '_1').checked;
	checked = !checked;
	document.getElementById(checkBoxId + '_1').checked = checked;
}

function showTempMessage()
{
	alert("Sorry, purchase facility is temporally unavailable. Please email at info@isoresearch.com for more information");
}
