function Show(obj){
	$("#"+obj.id).show();
}

function Hide(obj){
	$("#"+obj.id).hide();
}

function ShowCor(ID, Show) {
	if (Show) $("#"+ID).show();
	else $("#"+ID).hide();
}
