
/* show/hide divs */
function hide(id) {
	if(id.length < 1) { 
		return; 
	}	
	document.getElementById(id).style.display = "none";
}
function show(id) {
	if(id.length < 1) { 
		return; 
	}
	document.getElementById(id).style.display = "block";
}

function showTerms()
{
    childWindow=open('terms_conditions.html','mywindow','width=865,height=500,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes');
}

function showGuidelines()
{
    childWindow=open('user_guidelines.html','mywindow','width=865,height=500,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes');
}
