function closeWin(id)
{
	if(document.getElementById(id))
	{
		$("#"+id).slideUp('normal');
	}
}


function showPage(cType, shHd)
{
	tt = $('#contType').val();
	if (shHd == 0)
	{
		tt = tt.replace(","+cType, "");
	}
	else
	{
		tt = tt + "," + cType;
	}
	$('#contType').val(tt);

	$('#tmpIndVert').val($('#tmpIndVert'+cType).val());
}
